Voglio convertire alcuni script bash in app GUI usando Ubuntu SDK per creare un'app HTML5.
È possibile?
Esistono tutorial oltre a "Significati" che lo dimostrano?
Voglio convertire alcuni script bash in app GUI usando Ubuntu SDK per creare un'app HTML5.
È possibile?
Esistono tutorial oltre a "Significati" che lo dimostrano?
Risposte:
Qual è il server web che serve le app? Puoi sempre inserire gli script di shell nella /cgi-bin/
cartella e invocare l'URL.
scusate il ritardo, ma
è così che si fa un comando os su php
<?php
shell_exec("os command"); ?>
<?php
// lets try to download file
shell_exec("wget filename.zip"); ?>
// Utilizzo: realizziamo un downloader per YouTube
name this index.htm
<html>
<head>
<title>youtube Downloader</title>
</head>
<body>
<form name="form1" action="downloader.php" method="POST">
<div align="center">
<br><br>
<input type="text" name="youtube-id" size="25" value="Enter youtube video id ">
<br><input type="submit" value="download this video as mp4"><br>
</div>
</form>
</body>
</html>
<?php
/** 'Askubuntu'
name this downloader.php
be sure that shell_exec is enabled & you have installed the youtube-dl
installation
$ sudo add-apt-repository ppa:nilarimogard/webupd8
$ sudo apt-get update
$ sudo apt-get install youtube-dl
youtube-dl -o $videoid $videoid = youtube-dl download -o filename , the video link or video-id*/
$videoid = $_POST['expmonth'];
shell_exec("youtube-dl -o $videoid $videoid");
print '<a href="' . $videoid . '">Download</a>';
?>
puoi farlo controllare se il file esiste stampare con se volevo solo fare una risposta veloce