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:
Invoked from within a shell script, this will print the directory in which the script resides. Doesn't depend on external tools, /proc/self/*, etc.. (`echo` is a shell builtin.) To see the *current working* directory of a script, use `pwd`.
There are 6 alternatives - vote for the best!
This is an alternative to another command using two xargs. If it's a command you know there's only one of, you can just use:
ls -l /proc/$(pgrep COMMAND)/cwd
I submitted a command like this without $0 if $BASH_SOURCE is unset. Therefor, it did only work when using ./script, not using 'sh script'. This version handles both, and will set $mydir in a script to the current working directory. It also works on linux, osx and probably bsd.
The pwdx command reports the current working directory of a process or processes.
If you can do better, submit your command here.
You must be signed in to comment.
Being lazy I use
pwdalthough
echo $PWDwould work as well.
Bummer... Sorry, didn't read carefully enough. My bad...
To be clear, I've edited the original post. `pwd` does indeed show the *current working directory*. This method (which uses shell special parameters) simply shows the *location* of the script.
what does this do that:
dirname $0doesn't?
@tatsujin
Think you meant, "Doesn't this do that?"
Answer: Yes, although invoking a separate `dirname` process is slightly more expensive.
This isn't meant to give present working directory (which you would already have in $PWD in sh or bash). Instead, this gives the directory of the script that was launched. It's more efficient than the the little fork of calling `/usr/bin/dirname $0`. I like it.