mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-12 16:07:33 +00:00
1b71f91a01
darcs-hash:20061117162438-ac50b-5c4c7f0bd8bf53a16e16ecfead9569e642b7160f.gz
31 lines
593 B
Fish
31 lines
593 B
Fish
|
|
function alias -d (_ "Legacy function for creating shellscript functions using an alias-like syntax")
|
|
|
|
if count $argv >/dev/null
|
|
switch $argv[1]
|
|
case -h --h --he --hel --help
|
|
__fish_print_help alias
|
|
return 0
|
|
end
|
|
end
|
|
|
|
set -l name
|
|
set -l body
|
|
switch (count $argv)
|
|
|
|
case 1
|
|
set -l tmp (echo $argv|sed -e "s/\([^=]\)=/\1\n/")
|
|
set name $tmp[1]
|
|
set body $tmp[2]
|
|
|
|
case 2
|
|
set name $argv[1]
|
|
set body $argv[2]
|
|
|
|
case \*
|
|
printf ( _ "%s: Expected one or two arguments, got %d") alias (count $argv)
|
|
return 1
|
|
end
|
|
|
|
eval "function $name; $body \$argv; end"
|
|
end
|