Where Online Learning is simpler!



The output of your command "info man" is:

--> -->
 
 
CalledProcessError
Python 3.12.3: /usr/bin/python3
Fri Apr 4 03:38:54 2025

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

 /usr/lib/cgi-bin/lincmd.cgi in <module>
     56     print('<h3>The output of your command "<FONT color=#008500><B>{}</B></FONT>" is:</h3>'.format(mycmd))
     57     #result2 = subprocess.run("ls -l", shell=True, check=True, stdout=subprocess.PIPE)
=>   58     result2 = subprocess.run(mycmd, shell=True, check=True, stdout=subprocess.PIPE)
     59     #print('<PRE>' + result2.stdout.decode() + '</PRE>')
     60     line = result2.stdout.decode()
result2 undefined, subprocess = <module 'subprocess' from '/usr/lib/python3.12/subprocess.py'>, subprocess.run = <function run>, mycmd = 'info man', shell undefined, check undefined, stdout undefined, subprocess.PIPE = -1
 /usr/lib/python3.12/subprocess.py in run(input=None, capture_output=False, timeout=None, check=True, *popenargs=('info man',), **kwargs={'shell': True, 'stdout': -1})
    569         retcode = process.poll()
    570         if check and retcode:
=>  571             raise CalledProcessError(retcode, process.args,
=>  572                                      output=stdout, stderr=stderr)
    573     return CompletedProcess(process.args, retcode, stdout, stderr)
global CalledProcessError = <class 'subprocess.CalledProcessError'>, retcode = 1, process = <Popen: returncode: 1 args: 'info man'>, process.args = 'info man', output undefined, stdout = b'', stderr = None

CalledProcessError: Command 'info man' returned non-zero exit status 1.
      add_note = <built-in method add_note of CalledProcessError object>
      args = (1, 'info man')
      cmd = 'info man'
      output = b''
      returncode = 1
      stderr = None
      stdout = b''
      with_traceback = <built-in method with_traceback of CalledProcessError object>