How to display a file name which has zero bytes in size.
Answers were Sorted based on User's Feedback
Answer / safi
we can find using find command.
find / -size 0
This will print all files under / which has 0 size.
| Is This Answer Correct ? | 64 Yes | 1 No |
Answer / likhitha
#try this
#this will give you the answer
find /home/itsme -type f size 0
#this will display all 0 size "files" in /home/itsme
directory
#
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / sreehari ck
ls -l <location>
it will display all filenames exclude hidden file names
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / akula
ls -ltr | grep "^-" | sort -nk5 | head -1
or
ls -ltr | grep "^-" | sort -nk5 | head -1 | awk '{ print $9 }'
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rajdeep paul
We can find it in a different way also as shown below.
ls -lrtR |grep " 0 "
Although it is better to use find command here.
| Is This Answer Correct ? | 7 Yes | 8 No |
Answer / chinmayee
Hello
By touch command we can create zero byte file.
ex:touch file1 (creating a file)
cat file1 (displaying a file which size is zero)
check..........
| Is This Answer Correct ? | 13 Yes | 36 No |
What is pid?
What is grep and sed command?
What is the difference between grep and grep?
What is the difference between pipe and xargs?
Sorry to all Technical person for mistake of Question. Now i am post currect question Why copied file permission is changed in destination. When i give all permission i.e 777 to file and copy that to other location in destination the permission is 755. But if give permission 555 in destination that file permission is 555 and if give permission 444 to file after copy in destination the file permission is 444. These all are happening in normal user. How the umask value is calculate here really i am not understand. Please write the proper answer. Thanks in Advance
What do you mean by zambie process?
What are Unix processes, and how do you manage them?
what do you understand by 'unix is a portable os'?
Assume the following files are in the working directory prompt> ls -l tasks -rw-r--r-- 1 alex student 1423 Feb 21 14:01 tasks What command can Alex use to give everyone permission to write to the file? What will the ls -l command display if he does so?
Which command is used to create a directory?
what do you understand by 'building block primitive'?
What is the syntax of grep command and what is its use?