Answers for "how to get all file names in a folder in shell script"

6

search all folders for file match linux

find . -name "foo*"
Posted by: Guest on November-29-2020
1

how to get all file names in a folder in shell script

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

Code answers related to "how to get all file names in a folder in shell script"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language