this post was submitted on 15 Jun 2023
20 points (100.0% liked)
commandline
1760 readers
1 users here now
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
if you spend a lot of time in the shell, i like using the following for easier directory traversal:
z
for jumping to "frecent" directorieszsh-z
(a native zsh port ofz
)bd
for going back directoriesand some zsh settings which make
cd
silently act likepushd
/popd
:I want to add
setopt autocd
, andhash -d name=/some/long/path/to/name
to create your own~name
shortcuts.woa, i didn't even know about
hash -d name=/path
, neat!