Statistiques
| Révision :

root / bin / get-provisioned-space @ 39

Historique | Voir | Annoter | Télécharger (206 octet)

1
#!/bin/bash
2
# $Id: get-provisioned-space 39 2013-10-08 12:46:21Z ltaulell $
3

    
4
function usage {
5
  echo "Syntax: $0 zfs_volume_name"1>&2
6
  exit 1
7
}
8

    
9
if [ "$1" == "" ]
10
then
11
   usage
12
else
13

    
14
/sbin/zfs get volsize -H -t volume |egrep $1
15
/sbin/zfs get referenced -H $1
16
fi