How do you create a file in UNIX
Answers were Sorted based on User's Feedback
Answer / shad
Can you create a file calles "ls" or "cat" in unix? If Yes
how can u execute your file "ls" instead of the ls command?
| Is This Answer Correct ? | 8 Yes | 9 No |
Answer / uma garg
We can also create a File with
List >Filename
It will create a empty file.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / srinivas
by using cat > filename
and
tough filename
only 2 ways are here.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / sundar zeet
1.Use the command call touch....
ie. touch zeet
then it will create a file in the name of zeet
so the command is touch
2.We can use cat command too
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / madhusmita
Using ed command also,w can create new file.
ed
abc
bcd
.
w
text.txt
it will create a new file named text.txt with the above
content.
| Is This Answer Correct ? | 8 Yes | 13 No |
What is a bash command?
Explain command to display different lines that are found when compare two files?
Which command should you use to find the remaining disk space in unix server?
What is shrinking file system in AIX where it actually resides?
What is the different between UNIX command and UNIX shell script?
what is the use of ls -l command & what is the information it gives about user ?
what is the difference between "cron" command and "at" command?
What are awk commands?
How do you remove a crontab file?
when we installing aix os the ssh installed default?
which command is used to change group?
Write a command that will find all text files in a directory such that it does not contain the word "amazing" in any form (that is, it must include the words amazing, amazing, or amazing)?