mirror of
https://github.com/wader/fq.git
synced 2024-11-27 14:14:58 +03:00
11 lines
132 B
Bash
11 lines
132 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
FQ="$1"
|
||
|
|
||
|
s() {
|
||
|
echo "\$ $1"
|
||
|
sh -c "${1/fq/$FQ -o unicode=true -C}"
|
||
|
}
|
||
|
|
||
|
s "fq '.frames[1].header | dv' file.mp3"
|