Skip to content

Instantly share code, notes, and snippets.

@Drunkar
Created February 12, 2015 08:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Drunkar/55d9acb5987ba20906a2 to your computer and use it in GitHub Desktop.
Save Drunkar/55d9acb5987ba20906a2 to your computer and use it in GitHub Desktop.
Extract and remove all *.lzo files in current directory.
#!/bin/bash
lzos=*.lzo
for LZO in ${lzos}
do
echo ${LZO}
lzop -x ${LZO}
rm `echo ${LZO%.*}'.*'`
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment