what will this do $cat > file.c ?(file.c is a file in
current directory)
Answers were Sorted based on User's Feedback
Answer / ram
It will allow you to create file.c ( if file.c is
available, it will be overwritten with new data )
| Is This Answer Correct ? | 73 Yes | 6 No |
Answer / nagarjuna@rvr
the cat command is used to create and append info to the
files. by using the cat>file.c we create the file file.c.
if it is already in the current directory then it erise the
old info and place the new info onto the file file.c.
| Is This Answer Correct ? | 29 Yes | 2 No |
Answer / manikya girish
if we consider the command as cat > file.c
If we run this command the user gets back the control and he
needs to type something and once done, hit Ctrl+C to come
out of the scope. Whatever you have typed after executing
the command will be there in the file file.c
| Is This Answer Correct ? | 17 Yes | 0 No |
Answer / pramod krishna
Given file.c is a file in current dirctory.
So the command will remove the existing content and keep
the new content typing
| Is This Answer Correct ? | 14 Yes | 1 No |
Answer / guest
it will overwrite the contents present in the file.c file
| Is This Answer Correct ? | 12 Yes | 5 No |
Answer / prakash reddy
if file.c exists in current directory, entire content will
be erased, if it is not present a new file by the name
file.c is created
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / suvarna
cat >file.c -- wait for input data....
If we type something and press ctrl+d, whatever we typed
would be saved to file.c
else if we press ctrl+c, the file remains unchanged.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / rohit
First of all it is 'cat' command '$' is representing the
shell on which this command will be executed.
After execution of this command the system will expect you
to type in the contents of the file and then press the Ctrl-
d to terminate. The text you typed in will be stored in
file.c file.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / sudhansu mallick
It will allow you to create file.c ( if file.c is
available, it will be overwritten with new data )
| Is This Answer Correct ? | 2 Yes | 0 No |
Explain command to show the space allocation of files?
Which command will print your home directory on screen?
in unix echo is used for
10 Answers BFL, BirlaSoft, Patni,
Why we are using UNIX OS when we are doing the testing in our application?
What command a user use to view a long text file one page at a time in UNIX?
what is the functionality of kernel in unix architecture?
Can you explain a little bit about command substitution?
What Is the command to change a file's creation time. means one file is created at the time 15:19 then time should br changed to 14:14
what is the default signal kill in unix?
How can we "forked" process in UNIX? How then recognize in any of the branches we?
what are the different commands used to create files?
what is the command to get help on a UNIX terminal?