Tagged Questions
0
votes
2answers
538 views
Recursive touch command on BusyBox 1.01
I'm trying to write a bash script that will run on my QNap NAS to touch a directory recursively. I have this:
find $1 -exec touch {} +
However, find that comes with BusyBox 1.01 doesn't support the ...