This repository contains a collection of scripts gathered and created by me for various purposes.
Over the years, I've worked with all sorts of technologies and situations where I needed fast and efficient scripts. Instead of keeping them scattered across folders, I gathered them into a repo to make them easier to access, reuse, and improve.
This repo is useful for:
- developers
- system administrators
- scripting enthusiasts
- anyone who wants to
automaterepetitive tasks
You will find scripts written in several languages, including:
- CPP
- Python
- JS
- That's it for a while)
Clone the repo
git clone https://github.com/ValyMnDul/Scripts.gitGo to the scripts folder
cd Scripts/ScriptsChoose programming language
cd <language> #Replace <language> with the language of your choiceChoose your script and use it!
NOTE: Some commands may be slightly different on Windows.
- CPP (C++)
g++ -o program <script.cpp> #compiling
./program #executing- Python
python3 <script.py>-
JS
- If it works with
node:
node <script.js>
- If it works with the
browserjust add it to theindex:
<script src="<script.js>"></script> <!-- Replace "<script.js>" with the path to script.js -->
- If it works with
Pull requests are welcome! If you'd like to contribute or suggest features, feel free to open an issue or fork the repo.