How do you create a file in UNIX
Answers were Sorted based on User's Feedback
Answer / rakesh bagaria
1. using cat: cat>filename
2. using touch: touch filename (used basically for time stamping)
3. vi filename (exit using :wq)
4. echo>filename
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / pawan
to create the file using this command..
$ cat > filename
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / khaja.shaik
To create files in unix there are two processes are there.
They are..
1)cat command
which creates a new file. If the file is already exists
it overrides the contents. It occupies memory.
2)touch command
Which creates a new empty file for later use.
| Is This Answer Correct ? | 7 Yes | 4 No |
Answer / kanta harikrishna
by using touch command we can create an empty file:
syntax:touch <file-name>
by using cat command.......
syntax:cat ><file-name>
by using vi editor.......
syntax:vi <file-name>
(or)
><file-name>
| Is This Answer Correct ? | 7 Yes | 4 No |
Answer / gramper
We can create empty file by using the command
$ touch filename
Adding contents to an empty file
$ cat >>filename
- writing any contents
-ctl + d
$ cat filename
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / vi
We can create empty file by using the command true or :
: > testfile1
(or)
true > testfile2
The above two examples will create files.
| Is This Answer Correct ? | 6 Yes | 4 No |
Answer / july
first open start button then go to putty click there then it will be opened then it starts like this
na peru pipparmentu na volanta currentu na shape e truppetu
na soke bulletu
please give me rating for this
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / pehaaa
by using touch command, but the size of the file is zero
byte & cat command is used to create file and to store few
lines in it.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / kamini
touch <filename>
cat > filename
or use vi editor to create a file
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between grep and grep?
Why is shebang used?
What is grep in bash?
Name the general commands in using unix os for a beginner?
how unix kernel distinguishes between a normal file and device file ?
7 Answers Google, IBM, McAfee, Vodafone,
What is the significance of the 'tee' command?
what are the different commands used to create files?
How do I find previous commands in unix?
How do you copy a directory with many files and folders into another directory?
What is shrinking file system in AIX where it actually resides?
What command will bring user back to their home directory in UNIX?
How do I search for text in vi?