Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 797 Bytes

README.md

File metadata and controls

36 lines (29 loc) · 797 Bytes

common-scripts

Introduction

Some common used scripts.

Directories

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

How to use

Create a backup rm

  1. Add execute permission chmod +x remove.sh
  2. Should add alias as follows in your .bashrc or .zshrc or other shell settings file.
alias rm="$HOME/Tools/util/remove.sh"
  1. And then execute source .bashrc or source .zshrc

To be continued.