mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-02 03:06:28 +02:00
11 lines
118 B
Plaintext
11 lines
118 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
n=10
|
||
|
|
||
|
case "$1" in
|
||
|
-n) n=$2; shift 2 ;;
|
||
|
-n*) n=${1#-n}; shift ;;
|
||
|
esac
|
||
|
|
||
|
exec sed ${n}q "$@"
|