1
1
Fork 0

Add eps.fish

This expands, prints and then sets the variable $e. This allows to
preview an expansion and then use it by just using $e.
This commit is contained in:
Jonathan Schleifer 2020-02-20 21:58:30 +00:00
parent 9df078714e
commit 3157e7481b
2 changed files with 5 additions and 0 deletions

View file

@ -0,0 +1,4 @@
function eps --description 'Expand, print and set variable $e'
set -g e $argv
echo $e
end