In experimenting with variables, Max accidentally deletes his PATH vari- able. He decides he does not need the PATH variable. Discuss some of the problems he could soon encounter and explain the reasons for these prob- lems. How could he easily return PATH to its original value?
What will be an ideal response?
Because the shell has no way to find them, no commands or utilities, except
builtins, will work.
$ ls
bash: ls: No such file or directory
The inability to run commands without specifying their pathnames makes
the shell more difficult to use. Max can attempt to locate the ls command
using whereis.
$ whereis ls
bash: whereis: No such file or directory
A simple way to return PATH to its original value is to log out and then log
back in.
You might also like to view...
Simple formatting tools in Word enable you to change the font, font size, or text alignment
Indicate whether the statement is true or false
Each file has a unique filename, referred to as the file’s ____.
a. storage ID b. external ID number c. storage name d. external name
An index may be added to or deleted from tables at any time except for primary key indexes.
Answer the following statement true (T) or false (F)
? Where does ascriptelement usually go in an HTML document, and why??
What will be an ideal response?