Hey i wonder if there is any way to use batch command files like in windows
i wanna do sometihing like this
copy /tmp/filename.txt /filename.txt
when i run a file (file.bat)
or is´t any Scheduler program that can do that..
or can it be done in another way
i would look into mort scripts
Related
Hi,
I'm using phonealarm. It has an option to run a certain program when a profile is activated. I'd like to run a command which will:
1) delete a file
2) copy a file from the storage card to program files
3) rename this file
What's the best way to achieve this? Cheers...
if it's a console one would expect normal dos cmds to work like this
http://www.ericphelps.com/batch/
Sorry for my ignorance on WinMobile, but that webpage seems to have info only for win9x etc....
as I said if it's a console then one would expect that normal dos commands works
Never mind, fixed with a simple mortscript...
Code:
copy "\storage card\profiles\work.png", "\storage card\profiles\current.png", 1
I am creating a batch script for signing zips with a whole command interface. I need some help, where as I am stuck. This is also for learning,
I use setlocal enabledelayedexpansion in part of it, and then end that part with endlocal.
But even after endlocal, some of my commands aren't working, they return: (I need the java command to work)
'(command here)' is not recognized as an internal or external command, operable program, or batch file.
These commands will work before I use the set/endlocal variables, but not after.
Any help? I can pm you my bat file if you'd like.
anyone heard of this problem, or how to fix it?
have you looked into how mort scripts work?
Rudegar said:
have you looked into how mort scripts work?
Click to expand...
Click to collapse
no, are they specifically for winmo?
I'm running Android lol
Hello, everybody!
I've wrote simple batch script for signing apk and zip to be used in windows console.
There's nothing special, I just found it more handy for me, since I prefer to use Far Manager, not Windows Explorer and because I don't like right-clicks
To install it, extract contents of attached file somewhere into your path.
Then you can sign files simply typing in Far Manager (or windows console):
Code:
sign filename1.zip filename2.zip filename3.zip ...
It will create signed files filename1.signed.zip, filename2.signed.zip and so on.
Hi I was just wondering if anybody knows of a very simple program that you can use to execute adb batch files? For example, I am looking for a program where I can enter in an IP address, browse to a batch file I created, and click a button that executes it. thanks
Okay...I made a windows batch file to simplify using aapt. I'm gonna post them here and over on AFTVnews. They're very simple but extremely easy and user-friendly. I hope someone else finds some use for them too.
Here's a zip file with 4 different very useful batch files. 2 of them output to text file and the other 2 display directly in the command prompt. The aapt.exe MUST be in the same folder as the batch file being used.
https://www.dropbox.com/s/rchq46qrso2m3kp/aapt CLI GUI.zip