answersLogoWhite

0

What else can I help you with?

Related Questions

How do you find the files which is less than 1kb in unix?

To find files that are less than 1 KB in Unix, you can use the find command. The command would look like this: find /path/to/directory -type f -size -1k. This command searches for files (-type f) in the specified directory that are smaller than 1 KB (-size -1k). You can replace /path/to/directory with the actual path where you want to search.


How do you find absolute path name of your home directory what is it on your system?

All you need is the PWD(Print Working Directory) command, this will list your current directory absolute path All you need is the PWD(Print Working Directory) command, this will list your current directory absolute path


What command lets you to find all empty files in your source directory?

find -size 0


What command would you use to find where executable file resides of the system in Linux?

"find / -executable" will search the root directory for executables. Not that this will also show directories that are accessible.


How do you enter the find command to find files?

To use the find command to locate files, open your terminal and type find [path] -name [filename]. Replace [path] with the directory you want to search in (use . for the current directory) and [filename] with the name or pattern of the file you're looking for (you can use wildcards like *). For example, find . -name "*.txt" will find all text files in the current directory and its subdirectories.


What happens when you give the which utility the name of a command that resides in a directory that is not in the search path?

It won't find it.


What directory would you use to find out the capital city of a country?

you would use a country directory


What is the Unix command to count the number of files in current directory?

find -type f | wc -l


How do you find a file in Unix?

All Unix systems provide a 'find' command that searches for specific files in a given directory. To find a file that has the word "foo" in the /usr directory, I would type: $ find /usr -name *foo* For more information, see 'man 1 find'.


What does the question mark mean in a command line?

Its a wildcard for one character. (Example): if you want to find files in the directory that start with A & have a three letter file extension, you would use: a*.???


How do you find what files are taking space in Linux?

Type cd / to get to the root directory, get to your home directory, or get to the directory you wish to search from and type the below command.find . -size +500000 -printThis command would search for anything that's larger than 500MB. This value can be adjusted to a smaller value if no files are found that are this large.


Which Linux command shows which shell you are in?

to get the current shell :echo $0also Use the command ps with -p {pid} option, which selects the processes whose process ID numbers appear in pid. Use following command to find out what shell you are in:ps -p $$