11 lines
79 B
Bash
Executable File
11 lines
79 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
case "$1" in
|
|
|
|
*)
|
|
/usr/bin/ffplay -autoexit "$1"
|
|
;;
|
|
|
|
esac
|
|
exit
|