Method: Recipe.hd

Defined in:
lib/aspects/hd.rb

.hdObject



2
3
4
5
6
7
8
# File 'lib/aspects/hd.rb', line 2

def self.hd
  if Os.windows?
    'fsutil fsinfo drives'
  else
    'df -h'
  end
end