https://github.com/toyama0919/awscli-functions
https://github.com/toyama0919/awscli-functions
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/toyama0919/awscli-functions
- Owner: toyama0919
- Created: 2020-05-12T05:32:54.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-24T04:57:08.000Z (over 3 years ago)
- Last Synced: 2025-01-18T19:43:21.527Z (4 months ago)
- Language: Shell
- Size: 4.88 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# script
## import function(global)
```bash
sudo -E -H bash -c "git clone https://github.com/toyama0919/awscli-functions.git /opt/awscli-functions" && \
source /opt/awscli-functions/import.sh
```## update function(global)
```bash
sudo -E -H bash -c "cd /opt/awscli-functions && git pull origin --rebase" && \
source /opt/awscli-functions/import.sh
```## register profile
```bash
cat << 'EOS' >> ~/.bash_profile
source /opt/awscli-functions/import.sh
EOS
```