https://github.com/edoardotosin/tools
A collection of personal scripts written in Python, PowerShell, and Bash, designed to streamline workflows and automate tasks. Some scripts are specifically made for Raspberry Pi devices.
https://github.com/edoardotosin/tools
bash cli linux python script terminal terminal-based windows
Last synced: 4 months ago
JSON representation
A collection of personal scripts written in Python, PowerShell, and Bash, designed to streamline workflows and automate tasks. Some scripts are specifically made for Raspberry Pi devices.
- Host: GitHub
- URL: https://github.com/edoardotosin/tools
- Owner: EdoardoTosin
- License: mit
- Created: 2024-05-17T00:20:12.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-11-18T20:11:58.000Z (7 months ago)
- Last Synced: 2025-11-18T22:07:39.923Z (7 months ago)
- Topics: bash, cli, linux, python, script, terminal, terminal-based, windows
- Homepage:
- Size: 369 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# Automation Tools
A collection of automation scripts for Python, PowerShell, and Bash. Includes utilities for Raspberry Pi devices.
## Documentation
See [SCRIPT_CATALOG.md](SCRIPT_CATALOG.md) for a complete list of available scripts and usage instructions.
## Usage
### Linux
Execute shell scripts:
```sh
curl https://raw.githubusercontent.com/EdoardoTosin/tools/main/_script/script-name.sh | sh
```
Execute Python scripts:
```sh
curl https://raw.githubusercontent.com/EdoardoTosin/tools/main/_script/script-name.py | python
```
Pass arguments to scripts:
```sh
curl https://raw.githubusercontent.com/EdoardoTosin/tools/main/_script/script-name.sh | sh -s -- arg1 arg2
```
### Windows
Execute PowerShell scripts:
```powershell
irm "https://raw.githubusercontent.com/EdoardoTosin/tools/main/_script/script-name.ps1" | iex
```
Execute Python scripts:
```powershell
irm "https://raw.githubusercontent.com/EdoardoTosin/tools/main/_script/script-name.py" | python
```
## Security
**Warning:** Executing scripts directly from remote URLs is potentially dangerous. Always review script contents before execution and verify the source is trusted.
## Contributing
Contributions are welcome. Follow standard GitHub workflow for pull requests.
## License
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for more details.