Newer
Older
Import / code / .svn / pristine / 99 / 99b2ad29cc2190c435a7d33163dd3b4fdc3a7ec8.svn-base
@John John on 29 Dec 2020 204 bytes bulk import from macbookpro checkouts
#!/bin/bash

while [ $# -ge 1 ]
do
    if ! [ -e $1 ]
    then
         echo "Error: $1 not found. Bailing out"
         exit 1
    fi

    cat $1 | tr -d '\015' > tmp.x
    mv tmp.x $1

    shift
done