我想在fish中添加带有空格的别名,如下所示:
alias hello there 'print hello there'
这有可能吗? (我知道这个例子是无效的,我只是举个例子)。
提前致谢。
答案 0 :(得分:3)
使用fish的alias
包装函数目前无法实现这一点。
但是,最终做的是定义一个函数,所以你可以这样做。
function "hello there"
echo hello there
end
使用"hello there"
或hello\ there
执行。