I have a need to change the file names of multiple files and want to do it faster then selecting one file at a time in a file manager app.
Here is an example of what the files look like now:
dvd1DRRO_Intro.01_join_to_AVI.avi
dvd1DRRO_01.02.00_join_to_AVI.avi
dvd1DRRO_01.03.00_join_to_AVI.avi
dvd1DRRO_01.04.00_join_to_AVI.avi
dvd1DRRO_01.05.00_join_to_AVI.avi
dvd2DRRO_Intro.01_join_to_AVI.avi
dvd2DRRO_02.02.00_join_to_AVI.avi
dvd2DRRO_02.03.00_join_to_AVI.avi
dvd2DRRO_02.04.00_join_to_AVI.avi
dvd2DRRO_02.05.00_join_to_AVI.avi
dvd3DRRO_Intro.01_join_to_AVI.avi
dvd3DRRO_03.02.00_join_to_AVI.avi
dvd3DRRO_03.03.00_join_to_AVI.avi
dvd3DRRO_03.04.00_join_to_AVI.avi
dvd3DRRO_03.05.00_join_to_AVI.avi
I would like to take the leading dvd removed and _join_to_AVI removed for each file name.
Here is what I tried:
mv dvd3* 3* <--- Starting with a small set one change at a time.
This did not work.
Does anyone have a clue?
Thanks,
swub1
Please use the Q&A Forum for questions Thanks
Moving to Q&A
HI Folks
I've been doing alot with the initialization routines in android just lately .
For all my efforts I have been unable to get the device-added init action trigger to fire,
Just to be clear this is set in init.rc and looks like the following,
Code:
on device-added-/dev/compass
start akmd
The above is taken from the init readme file which contains an example init.rc at the bottom
I did some further research and a quick search of the AOSP code. This revealed that the functionality is yet to be implemented. which obviously explains why the trigger wasn't being fired . The device-removed and service-exited triggers are also missing.
In fact it is only ever mentioned in the readme, which from my time in the trade officially classes it as vapourware (for now)
I don't think I've missed anything obvious but if I have please correct me and call me a fool
I thought I'd share this little tit-bit as it might save someone a pointless debugging session
Please use the Q&A Forum for questions &
Read the Forum Rules Ref Posting
Moving to Q&A
Please delete this post as You have already moved my "How to Generate Bitmap Fonts for Gaming Environment ??" thread to Q & A
Q&A for [GUIDE] Setting Up A Build Environment on OS X 10.9 Mavericks
Some developers prefer that questions remain separate from their main development thread to help keep things organized. Placing your question within this thread will increase its chances of being answered by a member of the community or by the developer.
Before posting, please use the forum search and read through the discussion thread for [GUIDE] Setting Up A Build Environment on OS X 10.9 Mavericks. If you can't find an answer, post it here, being sure to give as much information as possible (firmware version, steps to reproduce, logcat if available) so that you can get help.
Thanks for understanding and for helping to keep XDA neat and tidy!
GSUS969 said:
I also have struggled trying to set this up on OSX 10.10 Yosemite. Maybe this guide needs an update?
EDIT:
For anyone that is trying to set up a build environment in Yosemite, I found a tutorial today (thanks to Santod040)!
Found the trick is here:
sudo xcode-select --switch "/Applications/Xcode-2.app/Contents/Developer"
Except for XCode and android SDK, does apple developer account needed for successfully setup building environment for OSX10.10 Yosemite?
Click to expand...
Click to collapse
Build error Android 4.2.2 in OSX 10.9.4
I tried to build Android 4.2.2 in OSX 10.9.4 with Xcode 6.0.1. I meet with the following error.
out/host/darwin-x86/obj/STATIC_LIBRARIES/librslib_intermediates/rslib_bc.S:11:12: error: mach-o section specifier requires a segment and section separated by a comma
.section .rodata,
^
out/host/darwin-x86/obj/STATIC_LIBRARIES/librslib_intermediates/rslib_bc.S:75:12: error: mach-o section specifier requires a segment and section separated by a comma
.section .rodata,
^
make: *** [out/host/darwin-x86/obj/STATIC_LIBRARIES/librslib_intermediates/rslib_bc.o] Error 1
make: *** Waiting for unfinished jobs....
Does someone has any idea about this?
Thanks!