#!/usr/bin/php -q #li3 > Lithium Documentation > app/controllers/CommandController::_help()

Source

						protected function _help() {
		extract(Message::aliases());

		$output = array(
			$t('Help'),
			'***',
			$t('The following commands have been implemented:'),
			'',
			"\t- " . $t('`~`: jump home'),
			"\t- " . $t('`clear`: clear this display'),
			"\t- " . $t('`git <project> <branch>`'),
			"\t- " . $t('`search <query>`'),
			"\t- " . $t('`cd`: an old friend. use to navigate around dev.lithify.me.'),
			"\t- " . $t('`links`: display a list of all link shortcuts.'),
			"\t- " . $t('some others that are currently undocumented...'),
		);
		return $this->_text($output);
	}