https://github.com/utility-libraries/utilities-sh
shell utility scripts
https://github.com/utility-libraries/utilities-sh
shell shellcode
Last synced: about 1 year ago
JSON representation
shell utility scripts
- Host: GitHub
- URL: https://github.com/utility-libraries/utilities-sh
- Owner: utility-libraries
- License: gpl-3.0
- Created: 2023-10-10T09:18:07.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-27T10:32:06.000Z (over 1 year ago)
- Last Synced: 2025-02-01T23:27:03.713Z (about 1 year ago)
- Topics: shell, shellcode
- Language: Python
- Homepage:
- Size: 43 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# utilities-sh
shell utility scripts
This project is meant as a container for utility-scripts that should work on any linux system out of the box.
Just select a script you want and copy it into your project.
For further information go into the scripts directory and read the README
## Templates
### [shell-cli-template](./shell-cli-template)
command-line-interface shell-script template
## Ready to go Scripts
### [http-serve](./http-serve)
Serve a folder in http-mode
## shell-utilities
### [template-replace](./template-replace)
```bash
cat {input-file} | ./template-replace --key val --key2 val2 ... > {output-file}
```
### [textwrap](./textwrap)
```bash
cat {input-file} | ./textwrap {fill,dedent,indent,shorten} ... > {output-file}
```