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 :: ubuntu vim-plug install 
Shell :: script to kill a process in windows 
Shell :: install cmake kali 
Shell :: git diff meld 
Shell :: restart ubuntu 18.04 server 
Shell :: xcode There is not enough disk space available to install the product. 
Shell :: search commit git 
Shell :: vs code terminal open file in separate window 
Shell :: ubuntu docker-compose cannot exit 
Shell :: git diff between local and remote branch 
Shell :: check if systemctl service is running linux 
Shell :: find and kill the process on a specific port windows 
Shell :: pip install pygame 
Shell :: epson l220 ubuntu driver 
Shell :: linux port 
Shell :: install clasp 
Shell :: brew install mongodb 
Shell :: check nativescript version 
Shell :: apt search installed package 
Shell :: git remote origin 
Shell :: linux get user id 
Shell :: undo git pull origin master into feature branch 
Shell :: How to use the sort command 
Shell :: how to link a directory in linux 
Shell :: .gitignore not working 
Shell :: ubuntu output to file and terminal 
Shell :: git alias list 
Shell :: clone a specific branch 
Shell :: slugify npm 
Shell :: install slack ubuntu 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =