💻
quick-bash
  • README
  • Preamble
  • Chapter 1
  • Chapter 2
  • Chapter 3
  • Chapter 4
  • Chapter 5
  • Chapter 6
  • Chapter 7
  • Chapter 8
  • Chapter 9
  • Appendix 1
  • Appendix 2
  • Appendix 3
  • Appendix 4
Powered by GitBook
On this page

Was this helpful?

Chapter 6

for f in *.txt; do

done

while

We can also use the find command to locate all files that match a specified pattern starting from the current directory:

find . -name *.txt
PreviousChapter 5NextChapter 7

Last updated 4 years ago

Was this helpful?