Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
8176645e
Commit
8176645e
authored
Sep 22, 2009
by
James Cox
Browse files
some helpers to make directory traversal go easier....
parent
ff8e99be
Changes
2
Hide whitespace changes
Inline
Side-by-side
aliases.zsh
View file @
8176645e
...
...
@@ -10,6 +10,7 @@ alias .='pwd'
alias
...
=
'cd ../..'
alias
_
=
'sudo'
alias
ss
=
'sudo su -'
#alias g='grep -in'
...
...
@@ -26,7 +27,10 @@ alias gba='git branch -a'
alias history
=
'fc -l 1'
alias ls
=
'ls -F'
alias
ll
=
'ls -al'
alias
ll
=
'ls -alr'
alias
l
=
'ls'
alias
ll
=
'ls -l'
alias
sl
=
ls
# often screw this up
alias
sgem
=
'sudo gem'
...
...
directories.zsh
0 → 100644
View file @
8176645e
# Changing/making/removing directory
alias
..
=
'cd ..'
alias
cd..
=
'cd ..'
alias
cd...
=
'cd ../..'
alias
cd....
=
'cd ../../..'
alias
cd.....
=
'cd ../../../..'
alias cd
/
=
'cd /'
alias
1
=
'cd -'
alias
2
=
'cd +2'
alias
3
=
'cd +3'
alias
4
=
'cd +4'
alias
5
=
'cd +5'
alias
6
=
'cd +6'
alias
7
=
'cd +7'
alias
8
=
'cd +8'
alias
9
=
'cd +9'
cd
()
{
if
[[
"x
$*
"
==
"x..."
]]
;
then
cd
../..
elif
[[
"x
$*
"
==
"x...."
]]
;
then
cd
../../..
elif
[[
"x
$*
"
==
"x....."
]]
;
then
cd
../../..
elif
[[
"x
$*
"
==
"x......"
]]
;
then
cd
../../../..
else
builtin cd
"
$@
"
fi
}
alias
md
=
'mkdir -p'
alias
rd
=
rmdir
alias
d
=
'dirs -v'
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment