1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2025-11-28 07:06:37 +00:00

Fish: Make dl download when given args

This commit is contained in:
Phantop 2019-03-25 19:24:01 -04:00
parent ea1a7d7dc6
commit f2e492b105

View file

@ -1,4 +1,8 @@
# Defined in /tmp/fish.A1YqAp/dl.fish @ line 1
# Defined in /tmp/fish.0D6Y21/dl.fish @ line 2
function dl
if test $argv
wget $argv
else
cd ~/Downloads/
end
end