在fishshell中,我可以非常轻松地创建和保存函数,例如:
function aaa
echo hello
end
funcsave aaa
但是如何从命令行轻松查看函数体
aaa
?除了:还有什么办法吗?
echo ~/.config/fish/functions/aaa.fish
functions aaa
username@MacBook-Pro ~> functions aaa
function aaa
echo hello
end
username@MacBook-Pro ~>
functions -n
# Displays a list of currently-defined functions
functions -c foo bar
# Copies the 'foo' function to a new function called 'bar'
functions -e bar
# Erases the function `bar`
此外,
type aaa
将向您展示函数定义,以及一些序言:
$ type aaa
aaa is a function with definition
function aaa
echo hello
end
funced aaa
还会显示该功能,并让您编辑它。