It will move the contents of temp1 from directory temp to


1. I am now in $HOME/sales/east directory. I want to have my login shell display me today's date whenever I login every time by telnet.
For this, what steps I have to do?
A. $ vi .profile
Type one line : echo "Today's date is `date`"
$ chmod +x .profile
$ . .profile

B. $ cd ../..
$ vi .profile
Type one line : echo "Today's date is `date`"
$ export .profile
$ .profile

C. $ cd $HOME
$ vi .profile
Type one line : echo "Today's date is `date`"
$ . .profile

D. $ vi ~/.profile
Type one line : echo "Today's date is "date"
$ . .profile

2A. Why I am getting this error when I assign like this ?
$ FIRST-NAME=smith
ksh: FIRST-NAME=smith: not found.
 
2B. Under ksh or bash shell environments, what is the problem here ?
$ export PATH=/usr/bin /usr/local/bin /usr/ucb/bin

3. Executing cp temp/temp1 temp1.txt it will result in...

A. Error since the same filename is used
B. Error since an extension is used for the second temp1
C. It will move the contents of temp1 from directory temp to temp1 of current directory and when finished it will erase the contents of temp1 of temp directory
D. It will copy temp1 from directory temp to temp1.txt of current directory

4. What kind of files will be matched by the following when you list by ls command:
For Ex :
$ ls [a-z][0-9]

This matches any file with 2 characters, first being a lower case letter and the second being a number from 0 to 9

A. ls [0-9][a-z][0-9][A-Z] -- Note : there are no spaces anywhere.

B. ls [A-Z0-9_][A-Za-z_0-9] -- Note : there are no spaces anywhere.

C. ls [0-9]Z[0-9]

 

5. What is the command to list files in a directory:

A. Having only three alphabets:

B. Starting with a digit and ending with a digit

6. There are many C programs in my directory which have an extension of .c (ex : first.c, second.c etc).
How can I concatenate all C files into one file called "myC_files

7. How do you sort first 15 lines in a file called 'datafile" ? (You need to use a pipe)
 
8. How do you add a line to the end of an existing file "myfile" with date stamp.

Request for Solution File

Ask an Expert for Answer!!
Basic Computer Science: It will move the contents of temp1 from directory temp to
Reference No:- TGS01067582

Expected delivery within 24 Hours