Here's how to get a handy list of all files in a folder without them, in a simple format for later processing.
find * -type f | grep -v "\.svn" | grep -v "\.DS_Store"
Outputs:
App-Info.plist
Default.png
GpsDrawTheme/theme.json
RootModule/code/common.js
RootModule/code/db.js
RootModule/code/drawing.js
RootModule/code/drawingMenu.js
RootModule/code/index.js
RootModule/code/instructions.js
RootModule/code/myDrawings.js
.. etc
I'm sure there's a way this could be simpler, but this works for me.
No comments:
Post a Comment