Automation Script to streamline local development setup. Either follow the steps below or download the script and tweak as necessary.
- Step 1 - Install Curl:
sudo apt install curl
- Step 2 - Execute script:
curl -fsSL https://raw.githubusercontent.com/ruanfdev/automated_setup_script/master/ubuntu_setup.sh | bash
- Step 1 - Install Curl:
sudo dnf install curl
- Step 2 - Execute script:
curl -fsSL https://raw.githubusercontent.com/ruanfdev/automated_setup_script/master/fedora_setup.sh
- Step 1 - Execute script:
irm https://raw.githubusercontent.com/ruanfdev/automated_setup_script/master/windows.ps1 | iex
- curl: Downloads the script content from the specified URL.
- -fsSL:
- -f: Fail silently (don't show progress meter or error messages).
- -s: Silent mode (don't show progress meter or error messages).
- -S: Show error messages if the download fails.
- -L: Follow redirects (in case the URL changes).
- |: Pipes (sends) the downloaded script content as input.
- bash: Executes the script in a Bash shell.