Answers for "bash all files in directory"

5

bash find all files containing string

grep -r '/path/to/somewhere/' -e 'pattern'
Posted by: Guest on October-29-2020
1

bash get all files in directory as array

array=( $( ls . ) )
Posted by: Guest on November-03-2021
0

shell list all files in directory

ls  /path/to/directory/**/
Posted by: Guest on April-11-2022

Code answers related to "bash all files in directory"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language