# bash-shell-to-bat-converter **Repository Path**: kennylee/bash-shell-to-bat-converter ## Basic Information - **Project Name**: bash-shell-to-bat-converter - **Description**: fork for https://github.com/daniel-sc/bash-shell-to-bat-converter - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-04-04 - **Last Updated**: 2021-04-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Simple Bash script to Windows batch file converter Converts bash scripts (`*.sh`) to windows batch files (`*.bat`). This is _not_ supposed to be a fully complete/correct tool, but rather a starting point when converting scripts. For simple scripts this might create correct results. Try it online: https://daniel-sc.github.io/bash-shell-to-bat-converter/ ## Usage Setup: ```sh git clone https://github.com/daniel-sc/bash-shell-to-bat-converter.git cd bash-shell-to-bat-converter npm install npm run tsc ``` Usage: ```sh node lib/cli.js FILE_TO_CONVERT.sh ``` This creates `FILE_TO_CONVERT.bat`. ## Contribute PRs always welcome ;-)