Set of scripts to automate process in Linux systems, especially Ubuntu.
To get the scripts, using wget
or curl
.
With wget
wget -qO- https://raw.githubusercontent.com/kaspary/sysutils/main/<path_to_script> | tr -d '\r' | bash
Or using curl
curl -L https://raw.githubusercontent.com/kaspary/sysutils/main/<path_to_script> | tr -d '\r' | bash
Where <path_to_script>
is the path to script from project root.
Runing sysutilsrc.config.sh
script.
wget -qO- https://raw.githubusercontent.com/kaspary/sysutils/main/config/sysutilsrc.config.sh | tr -d '\r' | bash
Runing utils.alias.sh
script.
wget -qO- https://raw.githubusercontent.com/kaspary/sysutils/main/config/sysutilsrc.config.sh | tr -d '\r' | bash
sysutils
├── alias
│ └── utils.alias.sh
├── config
│ ├── git.config.sh
│ ├── sysutilsrc.config.sh
│ └── tmp.config.sh
├── deploy
│ ├── aws.lambda.deploy.sh
│ └── heroku.deploy.sh
├── install
│ ├── asdf.installer.sh
│ ├── docker.installer.sh
│ ├── githubcli.installer.sh
│ ├── nvm.installer.sh
│ ├── poetry.installer.sh
│ ├── pyenv.installer.sh
│ ├── yarn.installer.sh
│ └── zsh.isntaller.sh
└── README.md