अजगर खोल स्क्रिप्ट निष्पादित

कोड उदाहरण

5
0

अजगर आदेश चलाएँ

import os
os.system('cmd /k "Your Command Prompt Command"')
3
0

अजगर को चलाने के लिए एक कमांड सिस्टम

import os
cmd = "git --version"
returned_value = os.system(cmd)  # returns the exit code in unix
2
0

शेल कमांड्स चलाया जाना से अजगर स्क्रिप्ट

import subprocess
subprocess.run(["bash", "testShell.sh"])
#we don't have to give full path to the shell script. It always execute from the current directory

#As a rule of thumb, you need to separate the arguments based on space, 
#for example ls -alh would be ["ls", "-alh"], while ls -a -l -h, 
#would be ["ls", "-a", -"l", "-h"]. As another example, 
#echo hello world would be ["echo", "hello", "world"], 
#whereas echo "hello world" or echo hello\ world would 
#be ["echo", "hello world"].

#Another example.
list_files = subprocess.run(["ls", "-l"])
print("The exit code was: %d" % list_files.returncode)
1
0

कैसे निष्पादित करने के लिए पार्टी की योजना बनाई आदेश में अजगर स्क्रिप्ट

import subprocess
subprocess.call(["sudo", "apt", "update"])
0
0

अजगर शैल कमांड चलाने

import subprocess
process = subprocess.Popen(['echo', 'More output'],
                     stdout=subprocess.PIPE, 
                     stderr=subprocess.PIPE)
stdout, stderr = process.communicate()
stdout, stderr
0
0

फोन खोल स्क्रिप्ट अजगर से

import subprocess
subprocess.call(["./shell.sh"])

# Make sure that "shell.sh" has "+x" permissions

अन्य भाषाओं में

यह पृष्ठ अन्य भाषाओं में है

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................