├── .gitignore ├── LICENSE ├── README.md ├── _awk.sh ├── _awk_sed.sh ├── _sed.sh ├── scripts └── grades │ ├── avg-class-grade.awk │ ├── avg-grade.awk │ └── grades.txt └── text ├── duplicate-geek.txt ├── employee.txt ├── geek.txt ├── html.txt ├── numbers.txt ├── paths.txt ├── phones.txt └── table.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenameyau/sed-awk-cheatsheet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenameyau/sed-awk-cheatsheet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenameyau/sed-awk-cheatsheet/HEAD/README.md -------------------------------------------------------------------------------- /_awk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenameyau/sed-awk-cheatsheet/HEAD/_awk.sh -------------------------------------------------------------------------------- /_awk_sed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenameyau/sed-awk-cheatsheet/HEAD/_awk_sed.sh -------------------------------------------------------------------------------- /_sed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenameyau/sed-awk-cheatsheet/HEAD/_sed.sh -------------------------------------------------------------------------------- /scripts/grades/avg-class-grade.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenameyau/sed-awk-cheatsheet/HEAD/scripts/grades/avg-class-grade.awk -------------------------------------------------------------------------------- /scripts/grades/avg-grade.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenameyau/sed-awk-cheatsheet/HEAD/scripts/grades/avg-grade.awk -------------------------------------------------------------------------------- /scripts/grades/grades.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenameyau/sed-awk-cheatsheet/HEAD/scripts/grades/grades.txt -------------------------------------------------------------------------------- /text/duplicate-geek.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenameyau/sed-awk-cheatsheet/HEAD/text/duplicate-geek.txt -------------------------------------------------------------------------------- /text/employee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenameyau/sed-awk-cheatsheet/HEAD/text/employee.txt -------------------------------------------------------------------------------- /text/geek.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenameyau/sed-awk-cheatsheet/HEAD/text/geek.txt -------------------------------------------------------------------------------- /text/html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenameyau/sed-awk-cheatsheet/HEAD/text/html.txt -------------------------------------------------------------------------------- /text/numbers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenameyau/sed-awk-cheatsheet/HEAD/text/numbers.txt -------------------------------------------------------------------------------- /text/paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenameyau/sed-awk-cheatsheet/HEAD/text/paths.txt -------------------------------------------------------------------------------- /text/phones.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenameyau/sed-awk-cheatsheet/HEAD/text/phones.txt -------------------------------------------------------------------------------- /text/table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenameyau/sed-awk-cheatsheet/HEAD/text/table.txt --------------------------------------------------------------------------------