summaryrefslogtreecommitdiff
path: root/upload.bash
blob: 59f067db978a5ea08cca4977f47a0c9b7f7b9200 (plain)
1
2
3
4
5
6
#!/bin/bash

rm *.txt *.csv
unzip $1

for file in *.txt; do mv $file ${file%.txt}.csv; echo $file; bash import.bash ${file%.txt} ; done