yoruno-vn / script /dos2unix.sh
nenekochan's picture
initial processing pipeline
df03d35
raw
history blame contribute delete
132 Bytes
#!/usr/bin/env bash
BASE=$1
for f in $BASE/*.ks; do
perl -pe 's/\r\n|\n|\r/\n/g' $f > $f.tmp # for 2015-sssa
mv $f.tmp $f
done