Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 905 Bytes

README.md

File metadata and controls

40 lines (33 loc) · 905 Bytes

ECS-Exec

Requirements

QuickStart

  1. Clone the repository
git clone https://github.com/iYasha/ecs-exec.git
  1. Change directory to the cloned repository
cd ecs-exec
  1. Make the script executable
chmod u+x ecs-exec
  1. Run the script
./ecs-exec

Add script to PATH

To add the script to the PATH, run the following command:

For bash:

echo 'export PATH="$PATH:'"$(pwd)"'"' >> ~/.bashrc && source ~/.bashrc

For zsh:

echo 'export PATH="$PATH:'"$(pwd)"'"' >> ~/.zshrc && source ~/.zshrc