Chapter 6
for f in *.txt; do
donewhile
We can also use the find command to locate all files that match a specified pattern starting from the current directory:
find . -name *.txtLast updated
Was this helpful?
for f in *.txt; do
donewhile
We can also use the find command to locate all files that match a specified pattern starting from the current directory:
find . -name *.txtLast updated
Was this helpful?