mirror of
https://github.com/wader/fq.git
synced 2024-11-05 02:34:02 +03:00
051a70bd4b
All other ranges and slicing uses exclusive end so i think it make sense to make it consistent. Update docs and add additional example for non-byte-aligned field. Also fixes issue showing zero bit ranges as start-NA.
11 lines
132 B
Bash
Executable File
11 lines
132 B
Bash
Executable File
#!/bin/bash
|
|
|
|
FQ="$1"
|
|
|
|
s() {
|
|
echo "\$ $1"
|
|
sh -c "${1/fq/$FQ -o unicode=true -C}"
|
|
}
|
|
|
|
s "fq '.frames[1].header | dv' file.mp3"
|