Requirements:
- Python installed
pipavailable
To set up and run the converter, execute:
.\setup_and_run.batRequirements:
- Python3 installed
python3.10-venvinstalledpython3-pipinstalled
Run the following commands in the cobol/converter directory:
chmod +x setup.sh # Make the script executable
sed -i 's/\r$//' setup.sh # Fix potential Windows line-ending issues
./setup.shNavigate to the cobol directory and open an Ubuntu Terminal.
1️⃣ Make the script executable
chmod +x run.sh2️⃣ Fix Windows line-ending issues (if applicable)
sed -i 's/\r$//' run.sh3️⃣ Run the program
./run.sh- The
sed -i 's/\r$//' <script>command ensures compatibility between Windows and Linux by removingCRLFline endings. - If you encounter permission issues, try running:
chmod +x run.sh setup.sh
