Scripts


Here are the scripts we have so far:

maxloop_sh.txt Script for testing maximum number of loop devices you can get on a Linux server

retrieve_http.txt Attempt at automating retrieval of netaddress mail since their credit card system is down. I found that NAMG works perfectly (http://www.zip.com.au/~gsymonds/NAMG/).

Converting DOS/UNIX Text Files:

Dos to Unix
  awk '{ sub("\r$", ""); print }' dosfile.txt > unixfile.txt
Unix to Dos
  awk 'sub("$", "\r")' unixfile.txt > dosfile.txt

More info on Converting Text Files from DOS to Unix and Unix to Dos:
http://kb.indiana.edu/data/acux.html


1