Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • 1
    What about tcsh.. Commented Jul 15, 2018 at 16:37
  • I used the following for changing all old Arduino files with .pde to .ino in RadioHead examples sub folders: for f in find /examples -iname '*.pde' -type f -print;do mv "$f" ${f%.pde}.ino; done – BobC just now Edit Delete Commented Feb 23, 2024 at 2:58