linuxcommand-linesunos

How to omit heading in df -k command of SunOs


Input: df -k

Output:

Filesystem            kbytes    used   avail capacity  Mounted on
/dev/dsk/c0t0d0s0    10332220  443748 9785150     5%    /
/devices                   0       0       0     0%    /devices
ctfs                       0       0       0     0%    /system/contract
proc                       0       0       0     0%    /proc
mnttab                     0       0       0     0%    /etc/mnttab
swap                 45475864    1688 45474176     1%    /etc/svc/volatile
objfs                      0       0       0     0%    /system/object
sharefs                    0       0       0     0%    /etc/dfs/sharetab
/dev/dsk/c0t0d0s3    10332220 3513927 6714971    35%    /usr

I want to omit the 1st line Filesystem kbytes used avail capacity Mounted on from the output.

I used df -k | tail -n+2 in linux to get exactly what i wanted, but in SunOs I get

zenvo% df -k | tail -n+2
usage: tail [+/-[n][lbc][f]] [file]
   tail [+/-[n][l][r|f]] [file]

How can i achieve the Required output:

/dev/dsk/c0t0d0s0    10332220  443748 9785150     5%    /
/devices                   0       0       0     0%    /devices
ctfs                       0       0       0     0%    /system/contract
proc                       0       0       0     0%    /proc
mnttab                     0       0       0     0%    /etc/mnttab
swap                 45475864    1688 45474176     1%    /etc/svc/volatile
objfs                      0       0       0     0%    /system/object
sharefs                    0       0       0     0%    /etc/dfs/sharetab
/dev/dsk/c0t0d0s3    10332220 3513927 6714971    35%    /usr

Note: No. of rows might change


Solution

  • I haven't used SunOS but using sed you should be able to delete the first line like this:

    df -k | sed -e /Filesystem/d
    

    edit: But you would have to be careful that the word Filesystem doesn't show up elsewhere in the output. A better solution would be:

    df -k | sed -e /^Filesystem/d