Command Line Scripts

Below are the CLI applications that I have created using Python, Ruby, Bash, and Java

Food Finder

Food Finder is a Ruby command line application.

Users can add and search for restaurants. Their restaurant list will be saved in a file named 'restaurants.txt', in a tab-delimited format.

To add multiple restaurants quickly, the user can edit the file in a text editor.
Click here to download an archive of the project files.

The application requires Ruby be installed on your computer. After downloading and unzipping the files, you can then run the command 'ruby init.rb' from inside of the unzipped folder.

Battleship

Battleship is a Python command line game.

The player can choose the size of the grid, from 5x5 up to 15x15, and the ship will be randomly placed in that grid. The size of the grid also determines the number of turns the user gets, from 5 to 15.

The game handles incorrect entries and can be replayed repeatedly.
Click here to download an archive of the project files.

The application requires Python 3 be installed on your computer. After downloading and unzipping the files, you can then run the command 'python battleship.py' from inside of the unzipped folder.

Number Guess

Number Guess is a Python number guessing game.

The player has 5 chances to correctly guess the randomly generated number between 1 and 50.
Click here to download an archive of the project files.

The application requires Python 3 be installed on your computer. After downloading and unzipping the files, you can then run the command 'python numguess.py' from inside of the unzipped folder.

Birthday Calculator

Birthday Calculator is a Python application that determines if the user's birthday has passed, and if so, how long ago it passed, as well as how long until their next birthday.

The application askes the user for the numerical month and day of their birth, and will not allow them to enter any invalid entries for either. The user is limited to entering 1 through 12 for the month and 1 through the last day of their birth month for the day.
Click here to download an archive of the project files.

The application requires Python 3 be installed on your computer. After downloading and unzipping the files, you can then run the command 'python birthday.py' from inside of the unzipped folder.

Bash Number Guess

Bash Number Guess is a Bash number guessing game.

The user is asked to choose a difficulty, resulting in a 1-5 digit random number, i.e. difficulty 1 results in random number between 1-9, difficulty 5 results in a random number between 10000-99999.

The user's lowest number of guesses and highest completed difficulty will be saved between runs, as long as the created file 'score' exists and is not altered.
Click here to download an archive of the project files.

The application requires the Bash Shell, so will not natively run on Windows. After downloading and unzipping the files, you can then run the command './guess.sh' from inside of the unzipped folder.

Fibonacci Generator

Fibonacci is a Java CLI application that will print the requested amount of numbers in the Fibonacci sequence.
Click here to download the jar file for this application, or click <%= link_to 'here', 'https://github.com/robertmlent/java-Fibonacci/archive/master.zip' %> to download an archive of the project files.

The application requires that Java be installed on your system. After downloading the Jar file, double-clicking it should run the application. You can also run it by typing 'java -jar fibonacci.jar' from the command line when inside of the directory where you downloaded the jar file.