Mercurial > mplayer.hg
annotate TOOLS/midentify @ 26757:0fdf04b07ecb
cosmetics: Remove pointless parentheses from return statements.
author | diego |
---|---|
date | Fri, 16 May 2008 09:31:55 +0000 |
parents | efb8b8fa323e |
children |
rev | line source |
---|---|
7865 | 1 #!/bin/sh |
15857
70ad5a19d831
Better approach to shell escaping, may not catch all cases yet
ranma
parents:
9572
diff
changeset
|
2 # |
70ad5a19d831
Better approach to shell escaping, may not catch all cases yet
ranma
parents:
9572
diff
changeset
|
3 # This is a wrapper around the -identify functionality. |
70ad5a19d831
Better approach to shell escaping, may not catch all cases yet
ranma
parents:
9572
diff
changeset
|
4 # It is supposed to escape the output properly, so it can be easily |
70ad5a19d831
Better approach to shell escaping, may not catch all cases yet
ranma
parents:
9572
diff
changeset
|
5 # used in shellscripts by 'eval'ing the output of this script. |
70ad5a19d831
Better approach to shell escaping, may not catch all cases yet
ranma
parents:
9572
diff
changeset
|
6 # |
70ad5a19d831
Better approach to shell escaping, may not catch all cases yet
ranma
parents:
9572
diff
changeset
|
7 # Written by Tobias Diedrich <ranma+mplayer@tdiedrich.de> |
70ad5a19d831
Better approach to shell escaping, may not catch all cases yet
ranma
parents:
9572
diff
changeset
|
8 # Licensed under GNU GPL. |
70ad5a19d831
Better approach to shell escaping, may not catch all cases yet
ranma
parents:
9572
diff
changeset
|
9 |
70ad5a19d831
Better approach to shell escaping, may not catch all cases yet
ranma
parents:
9572
diff
changeset
|
10 if [ -z "$1" ]; then |
70ad5a19d831
Better approach to shell escaping, may not catch all cases yet
ranma
parents:
9572
diff
changeset
|
11 echo "Usage: midentify <file> [<file> ...]" |
70ad5a19d831
Better approach to shell escaping, may not catch all cases yet
ranma
parents:
9572
diff
changeset
|
12 exit 1 |
70ad5a19d831
Better approach to shell escaping, may not catch all cases yet
ranma
parents:
9572
diff
changeset
|
13 fi |
70ad5a19d831
Better approach to shell escaping, may not catch all cases yet
ranma
parents:
9572
diff
changeset
|
14 |
9572 | 15 mplayer -vo null -ao null -frames 0 -identify "$@" 2>/dev/null | |
15869
1093105c639c
Solaris sed needs the terminating '}' to be on a separate line
ranma
parents:
15857
diff
changeset
|
16 sed -ne '/^ID_/ { |
15889
efb8b8fa323e
Add missing escapes, this should now cover all shell special characters AFAICS
ranma
parents:
15869
diff
changeset
|
17 s/[]()|&;<>`'"'"'\\!$" []/\\&/g;p |
15869
1093105c639c
Solaris sed needs the terminating '}' to be on a separate line
ranma
parents:
15857
diff
changeset
|
18 }' |