README.md aktualisiert

This commit is contained in:
2026-01-23 11:34:46 +00:00
parent f191e050cb
commit ef22d5a4c9

View File

@@ -1,9 +1,9 @@
# Windows Batch Scripts (WBS)
# Batchr
Batch scripts are simple text files (with .bat or .cmd extensions) containing a sequence of Windows command-line instructions. They automate repetitive tasks like file management, program launches, or system configurations by executing commands sequentially via the Command Prompt.
### Menu Launcher
```
cmd /c "curl -L https://git.weektab.org/companas/batch-scripts/raw/branch/main/wbs.bat -o %TEMP%\wbs.bat && start /wait %TEMP%\wbs.bat & del %TEMP%\wbs.bat"
cmd /c "curl -L https://git.weektab.org/companas/Batchr/raw/branch/main/batchr.bat -o %TEMP%\batchr.bat && start /wait %TEMP%\batchr.bat & del %TEMP%\batchr.bat"
```
-----