[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [shell-script] Pegar listagem de arquivo zip
From: |
Thobias Salazar Trevisan |
Subject: |
Re: [shell-script] Pegar listagem de arquivo zip |
Date: |
Thu, 10 Apr 2003 17:25:55 -0300 (BRT) |
ae luciano
On Thu, 10 Apr 2003, Luciano ES wrote:
> unzip -l $arquivo
> Mas aí ele gera isso aqui:
>
> Archive: espaços.zip
> Length Date Time Name
> -------- ---- ---- ----
> 22109 03-03-03 22:51 DOWNLOADER-HELP.chm
> 180224 03-05-03 11:39 Downloader.exe
> 464 03-05-03 11:36 Example Batch File.bat
> 1144 03-05-03 11:40 Example Download Link.lnk
> 3862 03-05-03 11:43 License.txt
> -------- -------
> 207803 5 files
se vc tiver bash pode fazer:
unzip -l $arquivo | sed -n '/[0-9]\{2\}\-/p' |\
while read c1 c2 c3 c4;do
echo $c4
done
em sed pode usar algo como:
$ unzip -l $arquivo | sed -n 's/^.*[0-9]\{2\}:[0-9]\{2\} *//p'
falow
thobias
-------
echo 24883721290304465999833114447114149701898P | dc
-------
http://www.lcp.coppe.ufrj.br/~thobias
____________________________
|
| Against - HTML Mail
| Against - MS ATTACHMENTS
|
----------------------------
- Pegar listagem de arquivo zip, Luciano ES, 2003/04/10
- Re: Pegar listagem de arquivo zip, Luciano ES, 2003/04/11
- Re: [shell-script] Re: Pegar listagem de arquivo zip, Fábio Olivé Leite, 2003/04/11
- Re: Pegar listagem de arquivo zip, Luciano ES <address@hidden>, 2003/04/12
- Re: [shell-script] Re: Pegar listagem de arquivo zip, Fábio Olivé Leite, 2003/04/12
- shell ou nao shell, eis a questao (era: ih, apaguei), aurelio, 2003/04/14
- Re: [shell-script] shell ou nao shell, eis a questao (era: ih, apaguei), Fábio Olivé Leite, 2003/04/14
- Re: [shell-script] shell ou nao shell, eis a questao (era: ih, apaguei), aurelio, 2003/04/14
- Re: [shell-script] shell ou nao shell, eis a questao, Listas XTMS, 2003/04/14
- Re: [shell-script] shell ou nao shell, eis a questao, Eddy, 2003/04/14
- Re: [shell-script] shell ou nao shell, eis a questao, aurelio, 2003/04/17