Skip to content
Snippets Groups Projects
Commit 09d7da86 authored by Rafaël Carré's avatar Rafaël Carré Committed by Carl Eugen Hoyos
Browse files

Accept stdin as input for patcheck.

Patch by Rafaël Carré, rafael d carre a gmail

Originally committed as revision 24499 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 28e241de
No related branches found
No related tags found
No related merge requests found
#!/bin/sh #!/bin/sh
# if no argument provided, write stdin to a file and re-run the script
if [ $# = 0 ]; then
cat > patcheck.stdout
$0 patcheck.stdout
rm -f patcheck.stdout
exit
fi
TMP=patcheck.tmp TMP=patcheck.tmp
OPT="-nH" OPT="-nH"
#FILES=`grep '^+++' $* | sed 's/+++ //g'` #FILES=`grep '^+++' $* | sed 's/+++ //g'`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment