strip.sh 97 B

1234567
  1. #!/bin/sh
  2. while [ $# -gt 0 ]; do
  3. tmp=`tr -d ' \n\r' < $1`
  4. printf '%s' "$tmp" > $1
  5. shift
  6. done