├── .gitignore ├── LICENSE ├── Makefile ├── README.adoc ├── README.pdf ├── inputs ├── gettysburg.txt ├── sonnet-29.txt └── the-bustle.txt ├── py-head ├── Makefile ├── const.txt ├── head.py ├── new.py ├── solution1.py ├── solution2.py ├── solution3.py └── test.py └── sh-head ├── Makefile ├── const.txt ├── head.sh ├── new_bash.py ├── simple-head.sh └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/sysadminshow/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/sysadminshow/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | pdf: 2 | asciidoctor-pdf README.adoc 3 | -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/sysadminshow/HEAD/README.adoc -------------------------------------------------------------------------------- /README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/sysadminshow/HEAD/README.pdf -------------------------------------------------------------------------------- /inputs/gettysburg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/sysadminshow/HEAD/inputs/gettysburg.txt -------------------------------------------------------------------------------- /inputs/sonnet-29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/sysadminshow/HEAD/inputs/sonnet-29.txt -------------------------------------------------------------------------------- /inputs/the-bustle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/sysadminshow/HEAD/inputs/the-bustle.txt -------------------------------------------------------------------------------- /py-head/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/sysadminshow/HEAD/py-head/Makefile -------------------------------------------------------------------------------- /py-head/const.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/sysadminshow/HEAD/py-head/const.txt -------------------------------------------------------------------------------- /py-head/head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/sysadminshow/HEAD/py-head/head.py -------------------------------------------------------------------------------- /py-head/new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/sysadminshow/HEAD/py-head/new.py -------------------------------------------------------------------------------- /py-head/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/sysadminshow/HEAD/py-head/solution1.py -------------------------------------------------------------------------------- /py-head/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/sysadminshow/HEAD/py-head/solution2.py -------------------------------------------------------------------------------- /py-head/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/sysadminshow/HEAD/py-head/solution3.py -------------------------------------------------------------------------------- /py-head/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/sysadminshow/HEAD/py-head/test.py -------------------------------------------------------------------------------- /sh-head/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/sysadminshow/HEAD/sh-head/Makefile -------------------------------------------------------------------------------- /sh-head/const.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/sysadminshow/HEAD/sh-head/const.txt -------------------------------------------------------------------------------- /sh-head/head.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/sysadminshow/HEAD/sh-head/head.sh -------------------------------------------------------------------------------- /sh-head/new_bash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/sysadminshow/HEAD/sh-head/new_bash.py -------------------------------------------------------------------------------- /sh-head/simple-head.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/sysadminshow/HEAD/sh-head/simple-head.sh -------------------------------------------------------------------------------- /sh-head/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/sysadminshow/HEAD/sh-head/test.py --------------------------------------------------------------------------------