Category: Command Line
Remove SVN Info from a Folder
This command removes the SVN data from a folder. find -name .svn -exec rm -rf {} \;
Fetch a URL With a Number Series
Use this command to download numbered content… for ((i=1; i
Zero Padding In Linux Commands
This is how you zero pad a numerical variable in bash. for ((x=1;x<=31;x+=1)); do echo `printf “%02d” $x`; done Original…
Create ISO Image of a Folder
Create an iso image of a directory mkisofs -J -allow-leading-dots -R -V “Label CD” -iso-level 4 -o ./cd.iso data_cd
XMLStarlet
Using XMLStarlet… curl -s ‘http://bashcurescancer.com/rss/’ | xml sel -t -m ‘//link’ -v ‘.’ -n http://bashcurescancer.com http://bashcurescancer.com/processing-xml-on-the-command-line.html http://bashcurescancer.com/do-not-close-stderr.html http://bashcurescancer.com/prepend-to-a-file-with-sponge-from-moreutils.html http://bashcurescancer.com/bug-in-curl-is-fixed.html http://bashcurescancer.com/using-kill-to-see-if-a-process-is-alive.html…
Compare contents of two files
Compare contents of two files by deleting only unique lines from ‘file1’ comm -1 file1 file2
Script to Convert FLV to AVI
This will convert a flv file to a avi file. I got this off linux.com. It uses mencoder – so…
Recent Comments