├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── .npmignore ├── README.md ├── bin └── cmd.js ├── package.json └── translations ├── ko-KR └── README.md ├── pt-BR └── README.md ├── zh-CN └── README.md └── zh-TW └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denysdovhan/bash-handbook/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | --- 2 | github: 3 | - denysdovhan 4 | ... 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denysdovhan/bash-handbook/HEAD/README.md -------------------------------------------------------------------------------- /bin/cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denysdovhan/bash-handbook/HEAD/bin/cmd.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denysdovhan/bash-handbook/HEAD/package.json -------------------------------------------------------------------------------- /translations/ko-KR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denysdovhan/bash-handbook/HEAD/translations/ko-KR/README.md -------------------------------------------------------------------------------- /translations/pt-BR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denysdovhan/bash-handbook/HEAD/translations/pt-BR/README.md -------------------------------------------------------------------------------- /translations/zh-CN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denysdovhan/bash-handbook/HEAD/translations/zh-CN/README.md -------------------------------------------------------------------------------- /translations/zh-TW/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denysdovhan/bash-handbook/HEAD/translations/zh-TW/README.md --------------------------------------------------------------------------------