More bashing
Thanks to my brother Steve, I was able to get my backtracking cd to the way I wanted it to
Just add the following to your ~/.bashrc
or if you want to make this work system wide add this to /etc/bashrc
:
#redefine pushd and popd so they don't output the directory stack pushd() { builtin pushd "$@" > /dev/null } popd() { builtin popd "$@" > /dev/null } #alias cd so it uses the directory stack alias cd='pushd' #aliad cdb as a command that goes one directory back in the stack alias cdb'popd'
The redefinition of pushd and popd redirects their output to /dev/null instaed of your terminal. This prevents them from displaying the entire stack every time they are called
Tweet
Comments
13c13
< alias cdb'popd'
---
> alias cdb='popd'
Post a Comment
Recent Entries
- ColdFusion returning empty response with server-error: true
- Careful applying CF11u16, CF2016u8, CF2018u2
- Sessions don't work in Chrome but do in IE
- csrfVerifyToken does not invalidate the token
- The cf_sql_ is optional in cfqueryparam
- Cookie Expires / Max-Age 1969-12-31T23:59:59.000Z
- Burst Throttling on AWS API Gateway Explained
- How to Resolve Java HTTPS Exceptions