Question: You will be creating a phone menu GUI using the Linux tput cup command. This command will place the cursor at a particular row and

You will be creating a phone menu GUI using the Linux tput cup command. This command will place the cursor at a particular row and column on the screen.
The program has been provided for you. You will need to carefully enter the program and test it before submitting your work.
There are several modifications you can make to your $HOME/.profile.
export PATH="${PATH}:"
export PS1="[\e[0;30m\W\[$(tput sgr0)\]]"
alias ls='ls color=none'
Adding a colon to your path allows Linux to search for commands in the current directory. Exporting your PS1 as shown above will display the current folder in black as your prompt. The alias for ls turns off color for ls output.
Additionally, you may want to turn off color for vi by creating a .vimrc file containing:
syntax off
2. You will also need to create two directories under your $HOME directory which are:
ab_Assignment_12C
ab_Assignment_12C/tmp
where f is the students first letter of their first name and l is the first letter of their last name.
3. You will be creating a hidden file named .myfuncs. Linux default is not to display dot files (files with a dot or period as their first character). You will need to turn on the option in WinSCP to view these files:
Options > Preferences > Panels
Make sure the Show hidden files (Ctrl+Alt+H) is checked.
All the files we will be creating will be in the directory located under $HOME/ab_Assignment_12C (where a is the students first letter of their first name and b is the first letter of their last name.)
phonemenu File
The first file we will need to create is the phonemenu file.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!