https://github.com/dalisoft/auc
Add-Update-Cleanup scripts pack
https://github.com/dalisoft/auc
Last synced: about 1 year ago
JSON representation
Add-Update-Cleanup scripts pack
- Host: GitHub
- URL: https://github.com/dalisoft/auc
- Owner: dalisoft
- License: gpl-3.0
- Created: 2024-04-12T16:26:25.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-14T02:55:06.000Z (about 2 years ago)
- Last Synced: 2025-02-09T04:43:50.663Z (over 1 year ago)
- Language: Shell
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# auc
Add-Update-Cleanup scripts pack
## Usage
### `update.sh`
```sh
curl -fsSL https://raw.githubusercontent.com/dalisoft/auc/master/update.sh | sh
```
### `cleanup.sh`
```sh
curl -fsSL https://raw.githubusercontent.com/dalisoft/auc/master/cleanup.sh | sh
```
## Additional commands
### Remove `node_modules` + `lockfiles`
```sh
find . -iname 'node_modules' -o -iname 'pnpm-lock.yaml' -o -iname 'package-lock.json' -o -iname 'yarn.lock' -o -iname 'bun.lockb' | xargs -L1 rm -rf
```