Skip to content

Instantly share code, notes, and snippets.

@cesarsouza
Created July 14, 2017 11:19
Show Gist options
  • Save cesarsouza/cec5fd37872ee0bfeabda0190e2724f7 to your computer and use it in GitHub Desktop.
Save cesarsouza/cec5fd37872ee0bfeabda0190e2724f7 to your computer and use it in GitHub Desktop.
Short script to uncompress the PHAV dataset
#!/bin/sh
for file in */*.tar.bz2
do
tar xvkjf ${file} --strip-components 1 -C videos
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment