Created
June 21, 2009 19:59
-
-
Save anonymous/133626 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
color 04 | |
title .app to .ipa | |
cd >nul | |
set /p h=what is the name of the .app file: | |
md Payload\%h% | |
copy %h% Payload\%h% | |
echo. | |
echo. | |
echo *********************************************** | |
echo *just create a new win rar archive and drag in* | |
echo *the new folder named payload into it. Then * | |
echo *rename it to anything.ipa * | |
echo *********************************************** | |
echo. | |
echo press any key to exit... | |
pause>nul |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment