I have a CSV file whitwith two columns and this information:
Column1 | Column2
USA | Chicago
USA | DalasDallas
FR | France
AUS | Sydney
AUS | Perth
And iI have to move all the files whit thewhere Column1 equal at equals AUS
exemple. For example,
mv Sydney* /usr/local/sbin
mv Perth* /usr/local/sbin
It'sIs it possible to do it whitthis with a shell script without using hardcodehardcoding?