# File lib/specinfra/command/solaris/base/inventory.rb, line 29
    def get_filesystem
      # emulates df -kP on Linux 
      # Also offers a creative solution for the 
      # multiple swap entries by adding a number suffix.
      # e.g. swap0, swap1 and so on.
      %Q{df -k | nawk -v i=0 '$1 == "swap" { $1=$1i; i++ }; NF == 1 { printf($1); next }; { print }'}
    end