can we use cat command as an editor ..???
Answers were Sorted based on User's Feedback
Answer / san
No. cat command is only ti list/View contains of File
| Is This Answer Correct ? | 51 Yes | 12 No |
Answer / rupali
The cat utility concatenates and display files. It also
can be used as a primitive editor for creation one liners
or adding a line to the config file. There is also a
version of cat called zcat which performs operation similar
to uncompress -c or for GNU version gunzip -c on each
input file
| Is This Answer Correct ? | 25 Yes | 1 No |
Answer / mayank
yes
id file doesn't exists
cat >file
my name is sopderman
r u serious
ctrl+d
cat >>file
no, i am not
ctrl+d
cat >file
overwriting file
ctrl+d
cat -n file> file2 --add line numbers
| Is This Answer Correct ? | 18 Yes | 1 No |
Answer / shakti
no we can not use cat as editor because it do not give
the fasilty of editing,modification in the content of the
file
| Is This Answer Correct ? | 10 Yes | 7 No |
Answer / venkatesh
cat command is not an editor because it is used to create
files and display file components and it is a internal
command in unix...
cat hi this is venkat@cec
it displays the text as entered above..
hi this is venkat@cec
cat>venkat
and
cat>>venkat
by using that format we used to use in unix.......
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / riyaz
Cat is not an editor.. its a command which has readonly
permision.
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / kesava swamy pindi
Yes, we can use 'cat' command as an editor.
Ex: cat > names.txt
hai
hello
ctrl+c
Here, iam creating a file called 'names.txt'. If this file
already exists, the old contents of the file will be
overwritten; else new empty file is created and data is
placed in this file.
Also, we can append new content to existing file using cat
command.
Ex: cat >> names.txt
bye
crtl+c
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / niranjan
cat is unix command not an editor.
Editor is one which provides various mode like input mode,command mode, and last line mode as vi editor..
cat displays the content of file if file exist else it creates
the new file and takes input from standard input(i.e, keyboard)
| Is This Answer Correct ? | 1 Yes | 0 No |
Is there any command in Unix, other than:ls, to list the files in a directory? The answer will be highly appreciated...
How do you move or rename a file or directory?
Why is it called a shebang?
What is the use of pipes?
what is the use of the hidden files?
What is grep in bash?
what is tar command and what are the different types of tar commands?
Write a grep (or grep) command that selects the lines from a file that have exactly three characters.
How does one process we can start an executable file? How to get the PID process, which we started?
How do you create a directory in UNIX?
Which unix command lists files/folders in alphabetical order?
How do you change file permissions?