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:
If you make a mess (like I did) and you removed all the executable permissions of a directory (or you set executable permissions to everything) this can help.
It supports spaces and other special characters in the file paths, but it will work only in bash, GNU find and GNU egrep.
You can complement it with these two commands:
1. add executable permission to directories:
find . type d -print0 | xargs -0 chmod +x
2. and remove to files:
find . type d -print0 | xargs -0 chmod -x
Or, in the same loop:
while IFS= read -r -u3 -d $'\0' file; do
case $(file "$file" | cut -f 2- -d :) in
:*executable*|*ELF*|*directory*)
chmod +x "$file"
;;
*)
chmod -x "$file"
;;
esac || break
done 3< <(find . -print0)
Ideas stolen from Greg's wiki: http://mywiki.wooledge.org/BashFAQ/020
There are 10 alternatives - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
The same in python (faster): http://code.activestate.com/recipes/577848-set-executable-mode-where-needed-directories-elf-f/
aka chmod -R +X
Not, chmod -R +X only works for directories or files that already have a execution bit set:
cp /bin/bash .chmod -x bashchmod +X bashls -ltotal 796
-rw-r--r-- 1 hrivas hrivas 811156 Aug 18 13:46 bash
From chmod(1) manual:
"execute/search only if the file is a directory or already has execute permission for some user (X)"
What about scripts, like Sh, Bash, Perl, Python, etc?
Also, why the 3
Also, why the 3[less than] and a subshell? Wouldn't a pipe work here?
For scripts the "file" command returns this:
something: a /bin/env bash script, ASCII text executable
So it works.
I only used the 3< you can request input in the middle, you are not changing the normal input. You can remove it:
while IFS= read -r -d $'\0' file; do file "$file" | egrep -q 'executable|ELF' && echo chmod +x "$file"; done < <(find . -type f -print0)Or even:
for file in $(find . -type f); do file "$file" | egrep -q 'executable|ELF' && echo chmod +x "$file"; done