Describe the mv command.
What will be an ideal response?
You can use the mv command (move) to move one or more files to another directory, as in the following:
mv *.txt /tmp
You can also use the mv command to rename a file, as in the following:
mv recipe new_recipe
You might also like to view...
Suppose that a recursive function with integer parameter n has a base case of 0, and for each non-base case, the function makes a recursive call with argument n+1. If the function is initially called with an actual argument of n = 3, the function call will
A) cause an infinite chain of recursive calls. B) return after a chain of 2 recursive calls. C) return after a chain of 3 recursive calls. D) return after a chain of 4 recursive calls. E) None of the above
For the following Web page, list all of the objects and actions
Local mail is sometimes called ____ mail.
A. home B. snail C. POP D. received
What is the underscore character used for in VBScript?
a) It is used to denote header files b) It is used to separate multiple word variable names c) It is used by the compiler to identify VBScript macros d) It is used as a line continuation character