Added startup.sh

This commit is contained in:
Ali
2025-12-12 13:30:46 +08:00
parent c050c9c953
commit 60b94afe3d
2 changed files with 97 additions and 2 deletions

View File

@@ -1,3 +1,18 @@
# common-scripts
# Common Scripts
Frequently used bash scripts.
Just some common scripts for all every Linux shells.
## Installation
To `/usr/local/common-scripts`: (reecommended)
```bash
git clone https://githive.duckdns.org/shared/common-scripts ~/common-scripts && \
sudo mv ~/common-scripts /usr/local/ && \
echo -e "\n# Common Scripts:\n. /usr/local/common-scripts/startup.sh \"/usr/local/common-scripts\"" >> ~/.bashrc
```
To `$HOME/common-scripts`:
```bash
git clone https://githive.duckdns.org/shared/common-scripts ~/common-scripts && \
echo -e "\n# Common Scripts\n. \$HOME/common-scripts/startup.sh \"$HOME/common-scripts\"" >> ~/.bashrc
```