This is a tool that helps us to upload files to the cloud using the CLI. It was built using bash and AWS storage service s3
-Firstly install the AWS CLI tool on your PC
You can install AWS via the link
https://awscli.amazonaws.com/AWSCLIV2.msi
or run this command in your terminal
msiexec.exe /i https://awscli.amazonaws.com/AWSCLIV2.msi
You can install on your linux system by running the command
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install
You can install the AWS CLI tool on your MAC computer via the link
https://awscli.amazonaws.com/AWSCLIV2.pkg
or run this command in the terminal
curl "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o "AWSCLIV2.pkg"
sudo installer -pkg AWSCLIV2.pkg -target /
After installation run the following command in your terminal
./script.sh path/to/file
Where "path to file" is the location of the file you would like to upload