como usar cut ou sed [RESOLVIDO]

1. como usar cut ou sed [RESOLVIDO]

andre
negu

(usa Outra)

Enviado em 10/01/2012 - 17:25h

gente!!

eu tenho a seguinte saida

1-
cat db2level.txt
DB21085I Instance "db2inst1" uses "32" bits and DB2 code release "SQL09053"
with level identifier "06040107".
Informational tokens are "DB2 v9.5.0.3", "s081210", "MI00268", and Fix Pack
"3a".
Product is installed at "/opt/ibm/db2/V9.5".


eu queria pegar apenas o "DB2 v9.5.0.3"

2-

e nesse caso:


df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda3 7.3G 5.9G 1.5G 81% /
/dev/sda1 289M 17M 258M 7% /boot
none 506M 0 506M 0% /dev/shm


eu queria penas isto "81% /"

podem me ajudar??


  


2. MELHOR RESPOSTA

Alexandre Gonçalves Monteiro da Silva
alexandregms

(usa Ubuntu)

Enviado em 10/01/2012 - 18:32h

negu escreveu:

gente!!

eu tenho a seguinte saida

1-
cat db2level.txt
DB21085I Instance "db2inst1" uses "32" bits and DB2 code release "SQL09053"
with level identifier "06040107".
Informational tokens are "DB2 v9.5.0.3", "s081210", "MI00268", and Fix Pack
"3a".
Product is installed at "/opt/ibm/db2/V9.5".

eu queria pegar apenas o "DB2 v9.5.0.3"


Se for apenas para esta linha, vc pode usar:

grep v9 db2level.txt | cut -d\" -f2



2-

e nesse caso:

df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda3 7.3G 5.9G 1.5G 81% /
/dev/sda1 289M 17M 258M 7% /boot
none 506M 0 506M 0% /dev/shm

eu queria penas isto "81% /"

podem me ajudar??


Neste caso use:

df -h | grep sda3 | awk '{print $5}'


3. Re: como usar cut ou sed [RESOLVIDO]

andre
negu

(usa Outra)

Enviado em 11/01/2012 - 05:54h

e quando a saida vem em volumes??


df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/VolGroup00-LogVol06
4.7G 2.1G 2.4G 47% /
/dev/sda1 244M 13M 218M 6% /boot
/dev/mapper/VolGroup00-LogVol03
9.5G 5.0G 4.1G 55% /usr
/dev/mapper/VolGroup00-LogVol05
6.2G 2.4G 3.6G 40% /home


eu faria assim??

df -h | grep VolGroup00-LogVol06 | awk '{print $5}'


4. Re: como usar cut ou sed [RESOLVIDO]

Alexandre Gonçalves Monteiro da Silva
alexandregms

(usa Ubuntu)

Enviado em 11/01/2012 - 11:58h

negu escreveu:

e quando a saida vem em volumes??


df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/VolGroup00-LogVol06
4.7G 2.1G 2.4G 47% /
/dev/sda1 244M 13M 218M 6% /boot
/dev/mapper/VolGroup00-LogVol03
9.5G 5.0G 4.1G 55% /usr
/dev/mapper/VolGroup00-LogVol05
6.2G 2.4G 3.6G 40% /home


eu faria assim??

df -h | grep VolGroup00-LogVol06 | awk '{print $5}'



Não, eu usaria assim:


df -h | grep -C 1 -B 0 VolGroup00-LogVol06 | awk '{print $4}'




5. Re: como usar cut ou sed [RESOLVIDO]

andre
negu

(usa Outra)

Enviado em 12/01/2012 - 10:03h

valeuu mto obrigadooooo


6. Re: como usar cut ou sed [RESOLVIDO]

andre
negu

(usa Outra)

Enviado em 12/01/2012 - 10:04h

as duas respostas me ajudaram muito!!!






Patrocínio

Site hospedado pelo provedor RedeHost.
Linux banner

Destaques

Artigos

Dicas

Tópicos

Top 10 do mês

Scripts