mirror of
https://github.com/wader/fq.git
synced 2024-11-05 02:34:02 +03:00
42debe5871
Update format dev docs to only generate README.md and doc/foramts.md to not cause formats.svg conflicts.
13 lines
144 B
Bash
Executable File
13 lines
144 B
Bash
Executable File
#!/bin/bash
|
|
|
|
FQ="$1"
|
|
|
|
s() {
|
|
echo "\$ $1"
|
|
sh -c "${1/fq/$FQ -o unicode=true -C}"
|
|
}
|
|
|
|
s "fq -n '\"hello\"'"
|
|
echo
|
|
s "fq -n '\"hello\" | d'"
|