UNIX SHELL SCRIPS - 1. Use "vi" to create a shell script copying the following:
#!/bin/bash
echo Select a country from the following list:
echo America, Italy, France, Germany
read country
case $country in
[Aa]merica ) echo Ford; echo Perhpas;;
[Ii]taly ) echo Ferarri; echo no;;
[Ff]rance ) echo Peugeot ;echo no way;;
[Gg]ermany ) echo Porsche ;echo yes;;
esac
...
Web - Tim Berners-Lee is known as the father of the Web. In “The Man who Invented the Web” (2005) it states that Berners-Lee has fought to keep it open, non-proprietary and free. Why would it be important to keep the Web open and free?
Web - According to “Putting Business Online Isn’t Always Easy” (2005), “the biggest mistake people make is failing to understand the commitment a Web site demands.” What commitment needs to be made when developing a Web site? How important is it to keep a site current? Why?
What does the name Ajax stand for? - What does the name Ajax stand for? What is Ajax, and what does it do? Give an example of how Netflix® uses Ajax, and explain why this makes the Web site faster.
Shell Scripting in Knoppix - I am trying to create a script in Knoppix 4.02 (KDE or Kwrite or Kate) based on the following requirements below. I want to create a prompt that will:
· Request user specific name
· I want Linux to compare it to an established name(Esther)
· I want the Linux to find the user specified name or Esther asking is this your name or another.
...