├── .gitignore ├── .markdownlint.yaml ├── Makefile ├── README.md ├── docs ├── Bash-CLI.md ├── Bash.md ├── CiscoIOS.md ├── Contributing.md ├── EL7.md ├── Git.md ├── LibreOffice.md ├── Makefile.md ├── MySQL-MariaDB.md ├── NetworkScanning.md ├── NetworkTroubleshooting.md ├── R.md ├── README.md ├── SELinux.md ├── Statistics.md ├── VSCode.md ├── Vim.md ├── VyOS.md ├── Windows.md ├── _config.yml ├── tmux.md └── tools.md └── print ├── Bash.pdf ├── EL7.pdf ├── Git.pdf ├── NetworkTroubleshooting.pdf ├── Statistics.pdf ├── Vim.pdf ├── VyOS.pdf ├── WS2012.pdf └── tools.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/README.md -------------------------------------------------------------------------------- /docs/Bash-CLI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/docs/Bash-CLI.md -------------------------------------------------------------------------------- /docs/Bash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/docs/Bash.md -------------------------------------------------------------------------------- /docs/CiscoIOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/docs/CiscoIOS.md -------------------------------------------------------------------------------- /docs/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/docs/Contributing.md -------------------------------------------------------------------------------- /docs/EL7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/docs/EL7.md -------------------------------------------------------------------------------- /docs/Git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/docs/Git.md -------------------------------------------------------------------------------- /docs/LibreOffice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/docs/LibreOffice.md -------------------------------------------------------------------------------- /docs/Makefile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/docs/Makefile.md -------------------------------------------------------------------------------- /docs/MySQL-MariaDB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/docs/MySQL-MariaDB.md -------------------------------------------------------------------------------- /docs/NetworkScanning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/docs/NetworkScanning.md -------------------------------------------------------------------------------- /docs/NetworkTroubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/docs/NetworkTroubleshooting.md -------------------------------------------------------------------------------- /docs/R.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/docs/R.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/SELinux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/docs/SELinux.md -------------------------------------------------------------------------------- /docs/Statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/docs/Statistics.md -------------------------------------------------------------------------------- /docs/VSCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/docs/VSCode.md -------------------------------------------------------------------------------- /docs/Vim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/docs/Vim.md -------------------------------------------------------------------------------- /docs/VyOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/docs/VyOS.md -------------------------------------------------------------------------------- /docs/Windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/docs/Windows.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/tmux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/docs/tmux.md -------------------------------------------------------------------------------- /docs/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/docs/tools.md -------------------------------------------------------------------------------- /print/Bash.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/print/Bash.pdf -------------------------------------------------------------------------------- /print/EL7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/print/EL7.pdf -------------------------------------------------------------------------------- /print/Git.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/print/Git.pdf -------------------------------------------------------------------------------- /print/NetworkTroubleshooting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/print/NetworkTroubleshooting.pdf -------------------------------------------------------------------------------- /print/Statistics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/print/Statistics.pdf -------------------------------------------------------------------------------- /print/Vim.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/print/Vim.pdf -------------------------------------------------------------------------------- /print/VyOS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/print/VyOS.pdf -------------------------------------------------------------------------------- /print/WS2012.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/print/WS2012.pdf -------------------------------------------------------------------------------- /print/tools.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvv/cheat-sheets/HEAD/print/tools.pdf --------------------------------------------------------------------------------