aliasalias
[options
] [name
[='
cmd
'
]]
Korn shell only. Assign a shorthand name
as a synonym for cmd
. If These aliases are built into ksh88 . Some use names of existing Bourne shell or C shell commands (which points out the similarities among the shells). autoload='typeset -fu' false='let 0' functions='typeset -f' hash='alias -t' history='fc -l' integer='typeset -i' nohup='nohup ' r='fc -e -' true=':' type='whence -v' The following aliases are built into ksh93 : autoload='typeset -fu' command='command ' fc='hist' float='typeset -E' functions='typeset -f' hash='alias -t --' history='hist -l' integer='typeset -i' nameref='typeset -n' nohup='nohup ' r='hist -s' redirect='command exec' stop='kill -s STOP' times='{ {time;} 2>&1;}' type='whence -v' OptionsExamplealias dir='echo ${PWD##*/}' |
|