Hi,
We've had these for a lot of other languages. The one for C/C++ was quite popular, so was the equivalent for Python. I thought one for BASH would be interesting too.
|
4
|
|||||||
|
|
|
To change all files in ~ which are owned by the group vboxusers to be owned by the user group kent instead, I created something. But as it had a weakness in using xargs I'm changing it to the solution proposed in the comment to this answer:
|
|||
|
|
Too long to include in total, but the solutions to How do I manipulate $PATH elements in shell scripts? are quite useful to me... |
|||
|
|
|
|
G'day, My favourite, and it's applicable to other shells that support aliases, is the simple way of temporarily disabling an alias by prepending a backslash to a command. So:
would always give you interactive mode when entering rm, entering
on the command line bypasses the alias. HTH cheers, |
||||
|
|
|
This is not so useful, but really interesting:
It prints the 10 most used commands. EDIT: This question is really similar to this. |
|||
|
|
|
|
We develop websites and store code for them in SVN. When moving to production we don't want the .svn directories to show up. The following code recurses directories and removes unwanted ones (could be used for any unwanted directories). Not strictly bash but useful nonetheless.
execute from the top most path in the product ... of course be careful as executed in the wrong place could cause very bad things to happen. You could also do a regular file by changing -type d to -type f |
||||||||
|
|
|
In a BASH script, assign an argument to variable but provide a default if it exists:
$MYVAR will contain the first argument if one was given else "default". |
|||
|
|
|
To remove .svn directories you may also use the combination 'find...-prune...-exec...' (without xargs):
|
|||
|
|
|
There's
...and then there are all those useful incarnations of the BASH for-loop:
|
|||
|
|
Found this somewhere on the net a long time ago:
|
|||
|
|
|
|
Add a space (or other delimiter) only if a variable is set, in order to avoid ugly unnecessary spaces.
|
|||
|
|
|
|
See: codesnippets.joyent.com/posts/show/2067 |
|||
|
|
|
|
Here is another one:
|
|||
|
|
|
|
At the beginning of a script that must be run as root:
|
|||
|
|
|
I use this to indent source code by four spaces and copying the result to the clipboard in X:
Now Something.java is ready to be pasted by middle clicking. I know I can reduce the expression by one pipe and remove the cat, but I like it this way as I find it easier edit the beginning when re-using the expression. |
|||
|
|
|
|
An effective (and intuitive) way to get a full canonical file path given a specified file. This would resolve all cases of symbolic links, relative file references, etc.
|
|||
|
|
|
|
I use this one a lot in conjunction with Java development:
#!/bin/sh
if [ "$1" == "" ] || [ "$2" == "" ]; then
echo "Usage jarfinder.sh "
exit
fi
SEARCH=`echo $2 | sed -e 's/[\\\/]/./g'`
echo Searching jars and zips in $1 for "$SEARCH"
find $1 -type f -printf "'%p'\n" | egrep "\.(jar|zip)'$" | sed -e "s/\(.*\)/echo \1 ; jar tvf \1 | sed -e 's\/^\/ \/' | grep -i \"$SEARCH\"/" | sh
which I keep in my collection of handy scripts. I also use this one-liner a lot:
end this one:
|
|||
|
|
|
|
Here is a nice grep expression to remove blank lines and comment lines:
The above will display the used settings in sshd_config without any clutter. |
|||
|
|