Quel est l'équivalent Linux des fichiers batch Windows?


14

J'ai un fichier batch que j'utilise pour créer un fichier .apk sur ma machine Windows. Maintenant, je dois pouvoir créer le fichier .apk dans Ubuntu mais je ne sais pas comment traduire mon fichier .bat en script pour pouvoir l'exécuter sur Ubuntu.

Vous trouverez ci-dessous le fichier de commandes qui fonctionne correctement sous Windows. Pourriez-vous me donner quelques conseils sur la façon dont je peux l'exécuter sur Ubuntu?

@echo off
set PAUSE_ERRORS=0
:user_configuration

:: Path to Flex SDK 
set FLEX_SDK=C:\sdk\flex_sdk_4.5.1.21328

:: Path to Android SDK
set ANDROID_SDK=C:\sdk\android

:validation
if not exist "%FLEX_SDK%\bin" goto flexsdk
if not exist "%ANDROID_SDK%\platform-tools" goto androidsdk
goto succeed

:validation
if not exist "%FLEX_SDK%\bin" goto flexsdk
if not exist "%ANDROID_SDK%\platform-tools" goto androidsdk
goto succeed

:flexsdk
echo.
echo ERROR: incorrect path to Flex SDK
echo.
if %PAUSE_ERRORS%==1 pause
exit

:androidsdk
echo.
echo ERROR: incorrect path to Android SDK in 'bat\SetupSDK.bat'
echo.

if %PAUSE_ERRORS%==1 pause
exit

:succeed
set PATH=%PATH%;%FLEX_SDK%\bin
set PATH=%PATH%;%ANDROID_SDK%\platform-tools

:: Android packaging
set AND_CERT_NAME="PeymanApp"
set AND_CERT_PASS=fd
set AND_CERT_FILE=cert\SampleApp.p12
set AND_ICONS=icons/android

set AND_SIGNING_OPTIONS=-storetype pkcs12 -keystore "%AND_CERT_FILE%" -storepass     %AND_CERT_PASS%

:: Application descriptor
set APP_XML=application.xml

:: Files to package
set APP_DIR=bin
set FILE_OR_DIR=-C %APP_DIR% .

:: Your application ID (must match <id> of Application descriptor)
set APP_ID=air.com.doitflash.SampleApp

:: Output packages
set DIST_PATH=dist
set DIST_NAME=PeymanApp

:validation
%SystemRoot%\System32\find /C "<id>%APP_ID%</id>" "%APP_XML%" > NUL
if errorlevel 1 goto badid
goto end_validation

:badid
echo.
echo ERROR: Application ID (APP_ID) does NOT match Application descriptor '%APP_XML%'     (id)

echo.

:end_validation

set TARGET=
set PLATFORM=android

::call bat\Packager.bat
if "%PLATFORM%"=="android" goto android-config

:android-config
set CERT_FILE=%AND_CERT_FILE%
set SIGNING_OPTIONS=%AND_SIGNING_OPTIONS%
set ICONS=%AND_ICONS%
set DIST_EXT=apk
set TYPE=apk
goto start

:start
if not exist "%CERT_FILE%" goto certificate
:: Output file
set FILE_OR_DIR=%FILE_OR_DIR% -C "%ICONS%" .
if not exist "%DIST_PATH%" md "%DIST_PATH%"
set OUTPUT=%DIST_PATH%\%DIST_NAME%%TARGET%.%DIST_EXT%
:: Package

echo true
echo.
call adt -package -target %TYPE%%TARGET% %OPTIONS% %SIGNING_OPTIONS% "%OUTPUT%"     "%APP_XML%" %FILE_OR_DIR% -extdir lib/
echo.
if errorlevel 1 goto failed
goto end

:certificate
echo Certificate not found: %CERT_FILE%
echo.

if %PAUSE_ERRORS%==1 pause
exit

:failed
echo APK setup creation FAILED.

if %PAUSE_ERRORS%==1 pause
exit

:end

Réponses:


9

Vous devez apprendre à écrire des scripts bash. Ce sont l'équivalent Linux des fichiers batch Windows. La syntaxe n'est pas trop difficile à comprendre. Je suggère de googler car il existe de nombreux excellents didacticiels librement accessibles.

Je suggère la programmation BASH - Introduction HOW-TO

Notez que vous devrez changer vos chemins de style Windows en style Linux. Par exemple

my_drive_letter:\my_folder\myfile

devient

/media/my_drive_label/my_folder/my_file

3

Assurez-vous d'avoir installé WineInstaller du vin , puis exécutez la commande suivante dans un terminal:

wine cmd

Cela ouvrira une invite de commande Windows. Commencez votre.bat partir de là.



1

Je ne peux pas m'empêcher de recoder mais il y a un document qui explique comment fonctionne le script shell et quelles commandes vous devez utiliser. Je suppose qu'il devrait être difficile de réécrire votre script:

http://linuxcommand.org/writing_shell_scripts.php


Cela aurait dû être laissé en commentaire.
Alex
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.