-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add shell aliases #357
Add shell aliases #357
Conversation
This reverts commit 4c91bea.
Example of shell session: > /tmp
> env
TZ "7200"
DIR "/tmp"
HOME "/usr/vinc"
> env FOO "Hello, World!" # Set env var and shell var
> env FOO
Hello, World!
> env
TZ "7200"
DIR "/tmp"
HOME "/usr/vinc"
FOO "Hello, World!"
> print $FOO
Hello, World!
> set foo "Hi there" # Set shell var
> alias p "print"
> p $foo
Hi there
> unset foo # Unset shell var
> unset FOO # Unset env var and shell var
> unalias p # Remove command alias TODO: |
Some aliases are present in Some commands could also be removed, for example |
No description provided.