es_out: fix ES_OUT_SET_ES_FMT
[vlc.git] / contrib / diffpatch.sh
blobad311c3214e51657acb0498836d4a42eaa57f41c
1 #!/bin/sh
2 # create a patch file based on file extension
3 # $1 folder to run the find in
4 # $2 extension to use for the diff
5 find $1 -name "*$2" -exec bash -c 'filepath="$1" ; dir=$(dirname "$filepath") ; base=$(basename -s $2 "$filepath") ; diff -pur $filepath $dir/$base' -- {} $2 \;