Some common used scripts.
common-scripts
├── README.md
└── shell
├── mysql
│ ├── export_from_mysql.sh
│ └── import_to_mysql.sh
└── utils
├── getWeek.sh
├── remove.sh
└── run.sh
3 directories, 6 files
- Add execute permission
chmod +x remove.sh
- Should add
alias
as follows in your.bashrc
or.zshrc
or other shell settings file.
alias rm="$HOME/Tools/util/remove.sh"
- And then execute
source .bashrc
orsource .zshrc
To be continued.