mirror of
https://github.com/jellyfin/jellyfin-ffmpeg.git
synced 2026-09-02 21:03:08 +03:00
11 lines
118 B
Bash
Executable File
11 lines
118 B
Bash
Executable File
#!/bin/sh
|
|
|
|
n=10
|
|
|
|
case "$1" in
|
|
-n) n=$2; shift 2 ;;
|
|
-n*) n=${1#-n}; shift ;;
|
|
esac
|
|
|
|
exec sed ${n}q "$@"
|