simple examples of how to

Tuesday, January 24, 2012

svn delete with wildcard

use find and xargs

example:

find target-folder/ -maxdepth 1 -name target_name[1-9]* | xargs -I '{}' svn rm '{}'

Thursday, January 12, 2012

making a linux machine ap

http://www.su-root.eu/computing/turn-your-linux-computer-in-a-wireless-access-point-using-hostapd

Sunday, January 1, 2012

redirecting error output

redirecting error output while lively seeing it

rm 2>&1 1> output | tee /tmp/tmp