Shell Script: Create Range of Numbers April 20, 2010 ~ admin for i in {1..5}; do echo $i; done Change 1..5 to the range you want. for i in {2..5999}; do echo $i; done
Unix Shell Script: Convert upper to lowercase text April 7, 2010 ~ admin One command magic: tr ‘[:upper:]’ ‘[:lower:]’ < input.txt > output.txt