oh-my-fish/pkg/fish-spec/functions/assert.expand_operator.fish
2015-12-19 11:46:09 +00:00

11 lines
165 B
Fish

function assert.expand_operator -a operator
switch $operator
case =
echo equals
case \-z
echo empty
case \*
echo $operator
end
end