mirror of
https://github.com/deltathetawastaken/dotfiles.git
synced 2025-12-06 07:16:37 +03:00
13 lines
207 B
Fish
13 lines
207 B
Fish
function up
|
|
if test -z "$argv"
|
|
cd ..
|
|
else
|
|
switch $argv
|
|
case '*'
|
|
for i in (seq $argv)
|
|
cd ..
|
|
end
|
|
end
|
|
end
|
|
end
|