Help for this page

Select Code to Download


  1. or download this
    # ssh myremoteserver.net 'df -k'
    Filesystem         1024-blocks   Used  Available Capacity Mounted on
    /dev/sda3            17092820  2255644  13954808     14%   /
    /dev/sdb4            30639063 11498971  17533191     40%   /home
    
  2. or download this
        system("ssh", "-l", "root", "df -k") == 0
            or die "Couldn't run command";