Android
Here is the command: The output would be: My activity name is: LauncherActivity
Android Blog is the place where I put code possible to be reused in near future.
Here is the command: The output would be: My activity name is: LauncherActivity
for f in `find`; do mv -v “$f” “`echo $f | tr ‘[A-Z]’ ‘[a-z]’`”; done
for f in *\ *; do mv “$f” “${f// /_}”; done
Interesting solution found on stackoverflow. In terminal, in current folder we write: for /f “Tokens=*” %f in (‘dir /l/b/a-d’) do (rename “%f” “%f”)