File size: 294 Bytes
30d835f |
1 2 3 4 5 6 7 8 9 10 11 12 |
#!/usr/bin/env bash
file_name=${1}
local_file_name=$(echo "${file_name}" | cut -f8 -d/)
bare_local_file_name=$(echo "${local_file_name}" | cut -f1 -d.)
wget ${file_name}
./write_to_filtered_file.py ${local_file_name}
gzip -c "${bare_local_file_name}.txt" > "${bare_local_file_name}.txt.gz"
|