mirror of
https://github.com/wader/fq.git
synced 2024-11-23 18:56:52 +03:00
f0ce7179b2
Also fixed some verbose -> dv leftovers
11 lines
147 B
Bash
Executable File
11 lines
147 B
Bash
Executable File
#!/bin/bash
|
|
|
|
FQ="$1"
|
|
|
|
s() {
|
|
echo "\$ $1"
|
|
sh -c "${1/fq/$FQ -o unicode=true -C}"
|
|
}
|
|
|
|
s "fq 'first(grep_by(.type == \"elst\")) | d' file.mp4"
|