Tags
android awstats beans clearcase clearquest curl debian dev dhcp dreamhost dvb eclipse ethernet html http java javascript licensing linux mac macfuse mpeg mysql mythtv network networking openoffice php random root safari samba scripting shell spring sshfs ssh linux sudoers requiretty touch tr ubuntu vpn vsftp WOL xmltv yum
Tag Archives: scripting
Scripted removal of accents from French text
This is the only way I’ve found to do it so far. Any better ideas? cat input.txt | tr “\350\351\352\340\341\342\343\344\345\362\363\364\365\366\371\372\373\374″ “eeeaaaaaaooooouuuu” Note tr \xxx is octal.
Obscure command line switch of the day
-max-procs n switch to xargs allows easy “parallel” processing in scripts. cat file.txt | xargs -i{} -max-procs 10 something {}

