Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
8176645e
Commit
8176645e
authored
15 years ago
by
James Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
some helpers to make directory traversal go easier....
parent
ff8e99be
master
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
43 additions
and
1 deletion
+43
-1
aliases.zsh
aliases.zsh
+5
-1
directories.zsh
directories.zsh
+38
-0
No files found.
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'
...
...
This diff is collapsed.
Click to expand it.
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
This diff is collapsed.
Click to expand it.
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