Skip to content

Instantly share code, notes, and snippets.

@sacdallago
Last active April 21, 2017 13:24
Show Gist options
  • Save sacdallago/33f566814d8e35e846a14703044936d4 to your computer and use it in GitHub Desktop.
Save sacdallago/33f566814d8e35e846a14703044936d4 to your computer and use it in GitHub Desktop.
#!/bin/bash
find . -type f -name '*_converted.avi' -print0 | while IFS= read -r -d '' file; do
echo $file
done > files_converted
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment