├── .gitignore ├── LICENSE ├── README.md ├── go.mod ├── go.sh ├── go.sum ├── main.go ├── update.sh ├── update_dev.service ├── updates ├── 0_fix_typo_on_bashrc_and_zshrc.sh ├── 1_add_conio_library.sh ├── 2_add_nodejs_env.sh ├── 3_add_pyenv_library.sh ├── _files │ └── 1_conio.h └── updates.json ├── usage.jpg └── version.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PauSiber/update/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PauSiber/update/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PauSiber/update/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PauSiber/update/HEAD/go.mod -------------------------------------------------------------------------------- /go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PauSiber/update/HEAD/go.sh -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PauSiber/update/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PauSiber/update/HEAD/main.go -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PauSiber/update/HEAD/update.sh -------------------------------------------------------------------------------- /update_dev.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PauSiber/update/HEAD/update_dev.service -------------------------------------------------------------------------------- /updates/0_fix_typo_on_bashrc_and_zshrc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PauSiber/update/HEAD/updates/0_fix_typo_on_bashrc_and_zshrc.sh -------------------------------------------------------------------------------- /updates/1_add_conio_library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PauSiber/update/HEAD/updates/1_add_conio_library.sh -------------------------------------------------------------------------------- /updates/2_add_nodejs_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PauSiber/update/HEAD/updates/2_add_nodejs_env.sh -------------------------------------------------------------------------------- /updates/3_add_pyenv_library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PauSiber/update/HEAD/updates/3_add_pyenv_library.sh -------------------------------------------------------------------------------- /updates/_files/1_conio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PauSiber/update/HEAD/updates/_files/1_conio.h -------------------------------------------------------------------------------- /updates/updates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PauSiber/update/HEAD/updates/updates.json -------------------------------------------------------------------------------- /usage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PauSiber/update/HEAD/usage.jpg -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | v1.0 2 | --------------------------------------------------------------------------------