[9fab9f]: / modules / RawDB / scripts / removeTrailing.sh

Download this file

7 lines (6 with data), 120 Bytes

1
2
3
4
5
6
#!/bin/bash
for fname in tokenCancer.csv
do
cat $fname | sed 's/.$//' > tmp.tmp
mv tmp.tmp $fname
done