├── .bash-git ├── .bash-mac-switch-escape-capslock ├── .bash-misc ├── .bash-myutils ├── .bash-prompt ├── .bash-workutils ├── .bash_generic ├── .bashrc ├── .bourne-apparix ├── .gitignore ├── README.md ├── abc-average.sh ├── bubba ├── ct ├── ctl ├── ctpartition ├── doc └── hissyfit.md ├── hissyfit ├── hissyfit.html ├── img ├── fh3.png ├── hf.png ├── hf2.png └── hft.png ├── merge-files-col.sh ├── nsort ├── peach.c ├── pp ├── preserve_header ├── qy ├── rcgrep ├── runner-bean.sh ├── scat.txt ├── tabby ├── tallyho.sh └── wordmer.pl /.bash-git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/.bash-git -------------------------------------------------------------------------------- /.bash-mac-switch-escape-capslock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/.bash-mac-switch-escape-capslock -------------------------------------------------------------------------------- /.bash-misc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/.bash-misc -------------------------------------------------------------------------------- /.bash-myutils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/.bash-myutils -------------------------------------------------------------------------------- /.bash-prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/.bash-prompt -------------------------------------------------------------------------------- /.bash-workutils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/.bash-workutils -------------------------------------------------------------------------------- /.bash_generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/.bash_generic -------------------------------------------------------------------------------- /.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/.bashrc -------------------------------------------------------------------------------- /.bourne-apparix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/.bourne-apparix -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/README.md -------------------------------------------------------------------------------- /abc-average.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/abc-average.sh -------------------------------------------------------------------------------- /bubba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/bubba -------------------------------------------------------------------------------- /ct: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | 5 | column -t -s $'\t' 6 | 7 | -------------------------------------------------------------------------------- /ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/ctl -------------------------------------------------------------------------------- /ctpartition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/ctpartition -------------------------------------------------------------------------------- /doc/hissyfit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/doc/hissyfit.md -------------------------------------------------------------------------------- /hissyfit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/hissyfit -------------------------------------------------------------------------------- /hissyfit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/hissyfit.html -------------------------------------------------------------------------------- /img/fh3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/img/fh3.png -------------------------------------------------------------------------------- /img/hf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/img/hf.png -------------------------------------------------------------------------------- /img/hf2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/img/hf2.png -------------------------------------------------------------------------------- /img/hft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/img/hft.png -------------------------------------------------------------------------------- /merge-files-col.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/merge-files-col.sh -------------------------------------------------------------------------------- /nsort: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | 5 | csvtk -t sort "$@" 6 | 7 | -------------------------------------------------------------------------------- /peach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/peach.c -------------------------------------------------------------------------------- /pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/pp -------------------------------------------------------------------------------- /preserve_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/preserve_header -------------------------------------------------------------------------------- /qy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/qy -------------------------------------------------------------------------------- /rcgrep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/rcgrep -------------------------------------------------------------------------------- /runner-bean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/runner-bean.sh -------------------------------------------------------------------------------- /scat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/scat.txt -------------------------------------------------------------------------------- /tabby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/tabby -------------------------------------------------------------------------------- /tallyho.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/tallyho.sh -------------------------------------------------------------------------------- /wordmer.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micans/bash-utils/HEAD/wordmer.pl --------------------------------------------------------------------------------