Delete 001-splitFiles.sh

This commit is contained in:
Eliran Wong 2018-10-08 10:25:22 +01:00 committed by GitHub
parent 30c9120a89
commit 0822524b5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 13 deletions

View File

@ -1,13 +0,0 @@
#!/bin/bash
cat file.csv | (
I=0;
echo -n"">file0;
while read line;
do
echo $line >> file$I;
if [ "$line" == '-|' ];
then I=$[I+1];
echo -n "" > file$I;
fi;
done;
)