Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

find a file linux

find . -print | grep -i filename/part_of_file_name

will print with the path
Comment

how to find a file in linux terminal

find /path/to/folder/ -iname *file_name_portion*
Comment

how to find files linux terminal

find . -print | grep -i <filename>
Comment

linux find file

# syntax 
# find *</path/to/dir> '(' *<Filter-1> *<and/or-operator> *<filter-2> ')'

# example 
find . '(' -name "Test*.pm" -a ! -name 'Useless*' ')'
Comment

PREVIOUS NEXT
Code Example
Shell :: how to go to a folder in git bash 
Shell :: reconfigure postfix 
Shell :: ip info on ubuntu 
Shell :: epson l220 ubuntu driver 
Shell :: install android sdk 
Shell :: add current directory to path 
Shell :: bash split string to array 
Shell :: git revert merge 
Shell :: kill all process 
Shell :: uninstall/remove libreoffice from ubuntu 
Shell :: create repository and push to git using command in vs code 
Shell :: bash for loop string 
Shell :: uninstall node using n 
Shell :: adonis make migration 
Shell :: unix check ram 
Shell :: wireshark para ubuntu 
Shell :: how to install anything on kali linux 
Shell :: *** WARNING : deprecated key derivation used 
Shell :: ubuntu server add ssh key 
Shell :: nginx file permission 
Shell :: how to uninstall all powershell modules 
Shell :: ubuntu output to file and terminal 
Shell :: git pull remote changes to local 
Shell :: git see local changes 
Shell :: mac terminal unzip to directory 
Shell :: how to copy a file to a remote server using the command line 
Shell :: delete all merged branches 
Shell :: intall docker ubuntu command 
Shell :: git rm cached 
Shell :: powershell print environment variables 
ADD CONTENT
Topic
Content
Source link
Name
6+6 =