Help for this page

Select Code to Download


  1. or download this
    open(PS,"ls . 2>/dev/null |")
    
  2. or download this
    open(PS, '-|', /bin/sh', '-c', 'ls . 2>/dev/null ')
    
  3. or download this
    open(PS,"ls . |")
    
  4. or download this
    open(PS, '-|', 'ls', '.')