commandlinefu.com is the place to record those command-line gems that you return to again and again.
Delete that bloated snippets file you've been using and share your personal repository with the world. That way others can gain from your CLI wisdom and you from theirs too. All commands can be commented on, discussed and voted up or down.
If you have a new feature suggestion or find a bug, please get in touch via http://commandlinefu.uservoice.com/
You can sign-in using OpenID credentials, or register a traditional username and password.
First-time OpenID users will be automatically assigned a username which can be changed after signing in.
Every new command is wrapped in a tweet and posted to Twitter. Following the stream is a great way of staying abreast of the latest commands. For the more discerning, there are Twitter accounts for commands that get a minimum of 3 and 10 votes - that way only the great commands get tweeted.
» http://twitter.com/commandlinefu
» http://twitter.com/commandlinefu3
» http://twitter.com/commandlinefu10
Use your favourite RSS aggregator to stay in touch with the latest commands. There are feeds mirroring the 3 Twitter streams as well as for virtually every other subset (users, tags, functions,…):
Subscribe to the feed for:
Instead of typing "cd ../../.." you can type ".. 3". For extremely lazy typists, you can add this alias:
alias ...=".. 2" ....=".. 3"
- so now you can write just .... !!!
NB the .. function needs to be "source"d or included in your startup scripts, perhaps .bashrc.
There are 3 alternatives - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
Nice idea!
However, I'm not sure to get the reason why you use 'j=${1:-1}'. Is this parameter expansion trick useful? Is the new variable j useful? Please help me to understand :-)
That's quite fun.
Alternatively (not equivalent but simplistically) :
alias :="cd .."alias :.="cd ../.."alias ::="cd ../../.."alias ::.="cd ../../../.."# repeat until bored :-)
-so now you can write just :: !!! :-)
{VAR:-VAL} means use $VAR if it's non-null, otherwise use VAL - think of it as a default.I _like_ ':.' etc, what a hoot.
Hmmm php ate my '$' - that should have been: ${VAR:-VAL} means use $VAR if it's non-null, otherwise use VAL - think of it as a default.
it might help to add 'o=$PWD' and 'OLDPWD=$o' at the beginning and end in order for 'cd -' to work as expected
..() { cd "$(seq ${1:0} | sed '/.*/s,,../,' | tr -d '\n')"; }
This way, you also keep your "cd -" working.
Actually make that:
..() { cd "$(seq ${1:-1} | sed '/.*/s,,../,' | tr -d '\n')"; }
Taliver - good point! I actually use a function for cd which wraps pushd so I never rely on 'cd -'. I'll try and post it here in case it's of interest:
# do ". acd-func.sh"# acd-func 1.0.5, 10-nov-2004# petar marinov, http:/geocities.com/h2428, this is public domain# http://linuxgazette.net//109/marinov.html..() {for (( j=${1:-1},i=0; i<j; i++)); do# cd .. always succeeds (on linux, at least) even if we're at /builtin cd ..donepwdls -CF}alias ...=".. 2" ....=".. 3"cd_func (){local x2 THE_NEW_DIR ADIR INDEXlocal -i CNTif [[ $1 == "--" ]]; thendirs -vreturn 0fiTHE_NEW_DIR=$1[[ -z $1 ]] && THE_NEW_DIR=$HOMEif [[ ${THE_NEW_DIR:0:1} == '-' ]]; then## Extract dir N from dirsINDEX=${THE_NEW_DIR:1}[[ -z $INDEX ]] && INDEX=1ADIR=$(dirs +$INDEX)[[ -z $ADIR ]] && return 1THE_NEW_DIR=$ADIRfi## '~' has to be substituted by ${HOME}[[ ${THE_NEW_DIR:0:1} == '~' ]] && THE_NEW_DIR="${HOME}${THE_NEW_DIR:1}"## Now change to the new dir and add to the top of the stackpushd "${THE_NEW_DIR}" > /dev/null[[ $? -ne 0 ]] && return 1THE_NEW_DIR=$(pwd) || builtin cd ${THE_NEW_DIR} || exit $?pwdls -CF## Trim down everything beyond 11th entrypopd -n +11 2>/dev/null 1>/dev/null## Remove any other occurence of this dir, skipping the top of the stackCNT=1while [ "$CNT" -lt 10 ]; dox2=$(dirs +${CNT} 2>/dev/null)[[ $? -ne 0 ]] && return 0[[ ${x2:0:1} == '~' ]] && x2="${HOME}${x2:1}"if [[ "${x2}" == "${THE_NEW_DIR}" ]]; thenpopd -n +$CNT 2>/dev/null 1>/dev/nullCNT=$(($CNT - 1))fiCNT=$(($CNT + 1))donereturn 0}if [[ $BASH_VERSION > "2.05" ]]; thenalias cd=cd_func# ctrl+w shows the menu# but first make sure ^w doesn't get eaten by stty werasestty werase ^-bind -x '"\C-w": cd_func -- ;'fi