rs(1) # NAME rs - yet another shell # DESCRIPTION This is yet another shell ## Command syntax |[ :- Description | ; : Run command regardless of the previous command's exit status. | || :[ Run command if the previous command has failed. (todo) | && :[ Run command if the previous command has succeeded. (todo) ## Builtins |[ :- Arguments :- Description | ! : :[ Show the status of the last command run. | cd : (dest) :[ Change the current directory. If one is not provided, go to home instead. | exit : :[ Quit the shell | set : key value :[ Set the 'key' environment variable to 'value'. | unset : key :[ Remove the 'key' environment variable. ## motd The motd printed on startup is read from /etc/motd. ## Prompt To set the prompt, use the PROMPT environment variable. If one is not set, " {USER}@{HOST} [{PWD}]\n{$} " is used by default. - {USER} is replaced by username - {HOST} is replaced by hostname - {$} is replaced by '#' for root and '$' for other users - {PWD} is replaced by current directory path # AUTHORS Maintained by Aqua . The source code can be found at https://neueland.iserlohn-fortress.net/cgit/rshell/.