aba52f917f
Make scripter easier and more stable by making the user input a text file instead of an (admitedly) easily broken string.
7 lines
200 B
Bash
7 lines
200 B
Bash
cat "$1" > script.txt
|
|
awk '{ print $2 }' script.txt > script-keywords.txt
|
|
awk '{ print $4 }' script.txt >> script-keywords.txt
|
|
awk '{ print $6 }' script.txt >> script-keywords.txt
|
|
|
|
mkdir img
|
|
rm img/*
|