answersLogoWhite

0

find -size 0

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What is the command is used to remove directory in Linux?

Assuming the directory is in your Home directory use: rmdir directory-name This will fail if there are files within the directory. In this case, use rm -r directory-name.


What command would you use to remove a directory on a UNIX server?

If you are just removing the directory, use the command: rmdir dir-name The dir-name directory has to be empty for this to work. If there are files or other subdirectories then use the command: rm -rf dir-name


How do you transfer multiple files from one directory to another in UNIX os?

The easiest way is to use the 'cp' command. Put the name of all the files in the 'cp' command line and use another directory as the target; all the files will be copied to the new directory. Note: you may need to use the -r (recursive) copy option if you have subdirectories in the source directory.


What is the command to be used to see all the files in a directory?

The command in a terminal is: ls (short for List). This will list the files in the current directory. Whilst in the Home directory, to list the files in a different directory, for instance Videos, use: ls Videos.


How delete commandcom from dos?

In DOS, you can delete files only by delete command. Use delete command as follows:C:\> delete For example: delete rajesh and then press enter..To remove a directory (Folder) use following command:C:\> RD For example: rd documents and then press enter..Note: Please make sure that directory is empty. You can only delete empty directory with rd command..


Why did the rmdir command fail's that a directory bar exists. The command rmdir bar fails with the message that the directory is not empty. On running ls bar no files are displayed?

This could mean that the directory named bar has hidden contents. Use ls -a bar to show all contents of bar.


What command of DOS is used to examine the files in a directory?

DIR


What Linux command that lists the basic files in a directory is?

ls


What command will display files starting from z in unix?

Use the command: ls z* for those files in your current working directory.


What is the command to list all files and sub directories in a directory?

DIR


Which Linux command will delete a directory as well as all its files and sub directories?

rm -rv /path/to/directory


How do you remove a full directory in Linux?

To remove a directory that is full with other files or directories, use the below command. rm -rf directory