mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 23:24:39 +00:00
Add alias function. Thanks to Tassilo Horn for pointing out that it was missing.
darcs-hash:20061107205539-ac50b-0053f828d40be5bcb088cdb8d669c239c201b433.gz
This commit is contained in:
parent
4edb71325f
commit
9959e53985
1 changed files with 22 additions and 0 deletions
22
share/functions/alias.fish
Normal file
22
share/functions/alias.fish
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
|
||||||
|
function alias -d (_ "Legacy function for creating shellscript functions using an alias-like syntax")
|
||||||
|
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
|
Loading…
Reference in a new issue