Ich möchte einige Bash-Skripte mit dem Ubuntu SDK in GUI-Apps konvertieren, um eine HTML5-App zu erstellen.
Ist das möglich?
Gibt es neben den 'Bedeutungen' Tutorials, die dies demonstrieren?
Ich möchte einige Bash-Skripte mit dem Ubuntu SDK in GUI-Apps konvertieren, um eine HTML5-App zu erstellen.
Ist das möglich?
Gibt es neben den 'Bedeutungen' Tutorials, die dies demonstrieren?
Antworten:
Auf welchem Webserver werden die Apps bereitgestellt? Sie können jederzeit Shell-Skripte in den /cgi-bin/
Ordner einfügen und die URL aufrufen.
Entschuldigung, ich bin so spät, aber das ist es,
wie man einen OS-Befehl auf PHP macht
<?php
shell_exec("os command"); ?>
<?php
// lets try to download file
shell_exec("wget filename.zip"); ?>
// Verwendung: Machen wir einen YouTube-Downloader für
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>';
?>
Sie können überprüfen lassen, ob die Datei vorhanden ist. Drucken Sie mit, wenn ich nur eine schnelle Antwort geben wollte