oh-my-fish/pkg/fish-spec/functions/assert.expand_operator.fish

11 lines
165 B
Fish
Raw Normal View History

2015-12-08 05:39:10 +08:00
function assert.expand_operator -a operator
switch $operator
case =
echo equals
case \-z
echo empty
case \*
echo $operator
end
end