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
aliasas follows in your.bashrcor.zshrcor other shell settings file.
alias rm="$HOME/Tools/util/remove.sh"- And then execute
source .bashrcorsource .zshrc
To be continued.