print output file in stdout instead of showing nothing - annna - Annna the nice… | |
git clone git://bitreich.org/annna/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws6… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
--- | |
commit 12afecefd9a1629b28ffe1d394cb976ab85b39f4 | |
parent 2cd83513e2323f1be9c26cea0ef2a0bdad68694f | |
Author: Anders Damsgaard <[email protected]> | |
Date: Sat, 12 Jun 2021 20:19:48 +0200 | |
print output file in stdout instead of showing nothing | |
Signed-off-by: Annna Robert-Houdin <[email protected]> | |
Diffstat: | |
M ffmpeg-effect | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/ffmpeg-effect b/ffmpeg-effect | |
@@ -90,7 +90,7 @@ if test "$#" -lt 3 -o ! -r "$2"; then | |
fi | |
if process_filter "$1" "$2" "$3"; then | |
- printf '%s\n' "$out" | |
+ printf '%s\n' "$3" | |
else | |
exit $? | |
fi |