Based on this gist compiled by Eric Pement - eric [at] pement.org
awk '/pattern/ {print "$1"}' # standard Unix shells
Based on this gist compiled by Eric Pement - eric [at] pement.org
awk '/pattern/ {print "$1"}' # standard Unix shells
| #!/bin/bash | |
| # A simple script to recursively resample a bunch of files | |
| # in a directory. Only certain file extensions (mp3, aac, | |
| # flac, wav) are considered. | |
| # | |
| # It takes 2 command line options: `indir` and `outdir`. | |
| # The destination (`outdir`) is relative to the current | |
| # directory of where you were when the script was run. | |
| # |