Answers for "find file linux"

9

find operating system linux

#Get details about linux distro
cat /etc/os-release
Posted by: Guest on October-25-2020
1

linux find any file linux

#find a file and print with path
find . -print | grep -i *.txt
Posted by: Guest on January-19-2021
3

find by name linux

# dot is curr dir 
find . -name "*.txt"
Posted by: Guest on December-07-2020
10

how to find a file in linux terminal

find /path/to/folder/ -iname *file_name_portion*
Posted by: Guest on April-01-2020
2

find linux with extension

find /home/username/ -name "*.err"
Posted by: Guest on September-19-2020
0

find file linux

find /home/linuxize -type f -name document.pdfCopy
Posted by: Guest on March-19-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language