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…
My KMix Settings
This kmix setting will setup your microphone for recording. I got it thru trial and error – its not perfect…
Compare contents of two files
Compare contents of two files by deleting only unique lines from ‘file1’ comm -1 file1 file2
Text type convert
Convert a text file format from MSDOS to UNIX dos2unix input_file output_file
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