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:
Normally the bash builtin command 'set' displays all vars and functions. This just shows the vars. Useful if you want to see different output then env or declare or export.
Alias 'sete' shows sets variables
alias sete='set|sed -n "/^`declare -F|sed -n "s/^declare -f \(.*\)/\1 ()/p;q"`/q;p"'
Alias setf shows the functions.
alias setf='set|sed -n "/^`declare -F|sed -n "s/^declare -f \(.*\)/\1 ()/p;q"`/,\$p"'
At the very least, some cool sed commands!
From my .bash_profile http://www.askapache.com/linux-unix/bash_profile-functions-advanced-shell.html
There is 1 alternative - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
Just thinking how is this different from:
envOK, did not notice your work on 'setf' before.
There seems no built-in alternative to 'setf' though.
It's much different than env, thats odd if sete and env are displaying the exact same environment.
Thats because env is a command, usually in /bin/env or /usr/bin/env so it is executed like any other executable, by calling execve with the current environment, but not the bash environment, whereas set is a shell builtin which shows all the bash internal variables and the current executing environment of bash.
For example, do a
cat /proc/$$/environOn my machine, env does not show the following vars that sete shows:
BASH BASH_ARGC BASH_ARGV BASH_LINENO BASH_SOURCE BASH_VERSINFO BASH_VERSION COLUMNS DIRSTACK EUID GROUPS HOSTTYPE IGNOREEOF INTERACTIVE LINES LOGIN_SHELL MACHTYPE MAILCHECK OPTERR OPTIND OSTYPE PPID PS2 PS3 PS4 SECONDS SHELLOPTS SOURCED UID
But if you want to see ALL the hidden variables within bash, check out: http://www.commandlinefu.com/commands/view/6899/print-all-environment-variables-including-hidden-ones
cat /proc/$$/environvs:
cat /proc/$PPID/environor with strace you can compare:
strace -v -f -e trace=execve /bin/envand stracing bash is harder, but:
strace -v -f -e trace=execve /bin/bash -i -l -c 'set'