Set umask, update aliases, and convert some to binds

This commit is contained in:
mitchell 2021-12-13 00:16:38 -05:00
parent 517bc5f587
commit 662cf1bcdc
7 changed files with 55 additions and 28 deletions

View file

@ -0,0 +1,9 @@
function do -d 'Repeat the command for each given argument'
set command (string split ' ' $argv[1])
and set args $argv[2..]
or return 1
for arg in $args
$command $arg
end
end