Answers for "ubuntu find file"

0

find file in ubuntu

find ~/ -type f -name "postgis-2.0.0"
Posted by: Guest on May-07-2021
2

terminal how to find a file name

find / -name NAME.EXTENSION
Posted by: Guest on January-17-2020
1

ubuntu find file with text

grep -r someWordToSearchHere *
Posted by: Guest on August-14-2019
2

find in files ubuntu

grep -r 'pattern_to_match' directory_to_search
Posted by: Guest on February-28-2021
3

ubuntu find file

$ find /path/to/file/ -iname filename
Posted by: Guest on September-25-2020
1

ubuntu search for command used

> grep "the_search" ~/.bash_history

--Don't forget the -i flag if you need case insensitive search.
Posted by: Guest on September-08-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language