exec

    1熱度

    1回答

    我在編碼,並且在一部分中出現錯誤。 但我無法找到錯誤發生的原因。 代碼(樣本;類似的錯誤部分): class Test: def __init__(self,a=0): self.x = a self.l = [2**x for x in range(a)] #<--- self.l = [1,2,4,8,16] self.base() def base(sel

    -1熱度

    1回答

    我懷疑如何在C中執行一個exec任務。應該如何傳遞參數(例如:3,+,2)?它會用於管道嗎?或者由argv儘管是int?而且,如果這個執行是由孩子拋出的,那麼父母是否會從管道中讀取該值? 謝謝!

    0熱度

    3回答

    我必須做出一個自定義的外殼作爲一所學校的項目和我打這個牆返回錯誤: int exec_shell(char **argv) // { if (execve(argv[0], (char **)argv , NULL)==-1) //if an error occurs { printf("Commande invalide : %s\n", argv[0]);

    1熱度

    1回答

    我正試圖將HUP信號發送給tor中的tor。 command := exec.Command("pidof tor | xargs kill -HUP") command.Dir = "/bin" if cmdOut, err := command.CombinedOutput(); err != nil { log.Panic("There was an err

    0熱度

    1回答

    我有兩個命令cmd1和cmd2,我必須在子節點中執行cmd1,將輸出重定向到另一個子節點,然後使用cmd1的輸出執行cmd2作爲論據。然後,我必須將輸出重定向到與套接字連接的遠程客戶端(telnet)。我無法弄清楚問題,但我的解決方案不會將cmd1輸出重定向到cmd2。 if(fork() == 0) { //Process to compute cmd1 cha

    -1熱度

    2回答

    我想在Windows上執行此命令,但似乎Java的exec不與重定向工作。我怎麼解決這個問題? c:/coolroid/gicater/mysqldump.exe -h127.0.0.1 -uroot -pagile -P3308 coolroid > C:/jukebackup/coolroid_1498793488965.bak

    0熱度

    1回答

    我google了一番,發現只有這個辦法: String cmd = String.format("logcat -d '%s:I' '*:S'", Schema.TAG); Process process = Runtime.getRuntime().exec(cmd); BufferedReader reader = new BufferedReader( new InputSt

    0熱度

    2回答

    我試圖在PHP腳本中使用jarun的「googler」,以搜索YouTube並找到第一個結果的URL。我正在執行的命令是googler --np --json -C -n 1 -w youtube.com -x <name of youtube video>,它在我的本地機器上完美工作。這裏是我的代碼: <?php exec("googler --np --json -C -n 1 -w you

    2熱度

    1回答

    我在Python(2.7),使用Popen委託一些工作提高到一個子進程的web服務器: url_arg = "http://localhost/index.html?someparam=somevalue" call = ('phantomjs', 'some/phantom/script.js', url_arg) imageB64data = tempfile.TemporaryFile

    2熱度

    1回答

    這有點讓人迷惑。在複製這兩個文件下一批片斷結果: xcopy "C:\Source\Spaces1 [ ].txt" "C:\Target\" /Y xcopy "C:\Source\Spaces2 [ ].txt" "C:\Target\" /Y 而下面的Java代碼片段使用流也導致複製這兩個文件: public static void main(final String args[])