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

11 lines
165 B
Fish
Raw Normal View History

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