Translate source code.
Translating from one batch file system to another can be interesting. As a former admin, I had to do that with Novell scripts and convert them to MSWindows batch files when we were changing systems. Someone wrote a batch file for emulate a menu to launch the browser to go to different sites that could of been a bit more precise for dos, but I decided to translate it to bash. Dos: @echo off color 0e Title Website Starter (by Prof. Pickle) :Menu cls echo --------------------------------------------------------------------- echo This is the Website starter echo. echo Select the number of the website you wish to select echo Or press E to exit. echo --------------------------------------------------------------------- echo. echo. echo 1. facebook echo 2. youtube echo 3. google echo 4. redtube echo 5. other set /p web= If %web% EQU 1 start www.facebook.com If %web% EQU 1 goto Menu If %web% EQU 2 start www.youtube.com If %web% EQU 2 goto Menu If %web% EQU 3 start www.google.com If %web% EQ...