9 lines
199 B
Bash
9 lines
199 B
Bash
|
|
||
|
# reminders of some useful oneliners
|
||
|
|
||
|
find /home/rizoma/kamizdat_archive/kamizdat.si -iname "*FLAC*.zip" -exec unzip "{}" \;
|
||
|
|
||
|
for i in *.zip; do unzip "$i" ; done;
|
||
|
|
||
|
find ~+ -type f -name "*.flac"
|