Re: bash et filesystem

Page principale

Répondre à ce message
Auteur: Patrick Begou
Date:  
À: ML Guilde
Sujet: Re: bash et filesystem
Raphael Dorado wrote:
> df <fichier> | tail -1 | awk '{print $1;}'
>
> --Raf


J'y avais pensé mais l'affichage n'est pas portable:

# df /local/home
Sys. de fich.        1K-blocs       Occupé Disponible Capacité Monté sur
/dev/sda4            453442048  98641040 354801008  22% /local


# df Allwmake
Sys. de fich.        1K-blocs       Occupé Disponible Capacité Monté sur
/dev/mapper/vg--baie1--calcul--1-data
                     1932607488 1096653444 835954044  57% /data


Mais du coup j'ai cherché si on pouvait gérer le format de sortie de la commande
et j'ai trouvé l'option -P!

df -P <fichier> | tail -1 | awk '{print $1;}'

J'étais trops focalisé sur la recherche de la "commande magique".

Merci

Patrick
--
===============================================================
|  Equipe M.O.S.T.         | http://most.hmg.inpg.fr          |
|  Patrick BEGOU           |       ------------               |
|  LEGI                    | mailto:Patrick.Begou@hmg.inpg.fr |
|  BP 53 X                 | Tel 04 76 82 51 35               |
|  38041 GRENOBLE CEDEX    | Fax 04 76 82 52 71               |

===============================================================