Add files via upload

This commit is contained in:
Eliran Wong 2018-10-07 21:21:15 +01:00 committed by GitHub
parent e580affc5c
commit ea5fad7070
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7955 additions and 0 deletions

13
Script/001-splitFiles.sh Normal file
View File

@ -0,0 +1,13 @@
#!/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;
)

7942
Script/002-renameFiles.sh Normal file

File diff suppressed because it is too large Load Diff