Find impreciso

1. Find impreciso

Mauriciodez
Mauriciodez

(usa Debian)

Enviado em 05/05/2017 - 20:10h

pessoas ... há uns dias venho notando q o comando '"find" está zuado .... as vezes preciso dar o comando 2x para ele retornar algum resultado de busca ... outras vezes ele não encontra tudo o q tem .. ex: tem varias coisas em diversos lugares como a string "zenity" mais quando eu procuro em / ele não retorna os q estão dentro da /home, e como ele não retorna os da /home, tb estou duvidando q ele retorne TODOS da / ... o que poderia estar acontecendo ???


  


2. Re: Find impreciso

Marcelo Oliver
msoliver

(usa Debian)

Enviado em 05/05/2017 - 20:33h

Mauriciodez escreveu:

pessoas ... há uns dias venho notando q o comando '"find" está zuado .... as vezes preciso dar o comando 2x para ele retornar algum resultado de busca ... outras vezes ele não encontra tudo o q tem .. ex: tem varias coisas em diversos lugares como a string "zenity" mais quando eu procuro em / ele não retorna os q estão dentro da /home, e como ele não retorna os da /home, tb estou duvidando q ele retorne TODOS da / ... o que poderia estar acontecendo ???


BoaNoite, Mauricio.
Poste o comando que está executando . . .

mso




3. Re: Find impreciso

Perfil removido
removido

(usa Nenhuma)

Enviado em 05/05/2017 - 20:45h

Quando eu rodo find na / eu rodo como root para não ver mensagens chatas em stderr.

----------------------------------------------------------------------------------------------------------------
Nem direita, nem esquerda. Quando se trata de corrupção o Brasil é ambidestro.
(anônimo)

Encryption works. Properly implemented strong crypto systems are one of the few things that you can rely on. Unfortunately, endpoint security is so terrifically weak that NSA can frequently find ways around it. — Edward Snowden



4. Re: Find impreciso

Mauriciodez
Mauriciodez

(usa Debian)

Enviado em 05/05/2017 - 20:50h

msoliver escreveu:

Mauriciodez escreveu:

pessoas ... há uns dias venho notando q o comando '"find" está zuado .... as vezes preciso dar o comando 2x para ele retornar algum resultado de busca ... outras vezes ele não encontra tudo o q tem .. ex: tem varias coisas em diversos lugares como a string "zenity" mais quando eu procuro em / ele não retorna os q estão dentro da /home, e como ele não retorna os da /home, tb estou duvidando q ele retorne TODOS da / ... o que poderia estar acontecendo ???


BoaNoite, Mauricio.
Poste o comando que está executando . . .

mso



marcelo ... é um find simples mesmo
find / -iname string 

mauricio@debian:~$ ls | grep ze*
zenity.txt
mauricio@debian:~$ sudo find / -iname zenity*
[sudo] password for mauricio:
mauricio@debian:~$ sudo find / -iname zenity*
/home/mauricio/zenity.txt
mauricio@debian:~$ sudo find / -iname zenity
/usr/bin/zenity
/usr/share/doc/zenity
/usr/share/zenity
/usr/share/help/C/zenity
/usr/share/help/pt_BR/zenity
/usr/share/help/en_GB/zenity
mauricio@debian:~$ sudo find / -iname zenity*.*
/home/mauricio/zenity.txt
mauricio@debian:~$


Veja q a 1ª vez eu tive q dar o comando 2x para ele retornar alguma coisa .... sem falar q no /home ainda coloquei varios "zenity" dentro das pastas

_______________________________________________________________
" Nem sempre é amigo aquele que te tira do buraco !!! ( Saddam Hussein )"


5. Re: Find impreciso

Perfil removido
removido

(usa Nenhuma)

Enviado em 05/05/2017 - 21:39h

sudo find / -iname zenity*.* 


Ele considera ponto como caractere, de modo que os outros nomes sem ponto são ignorados.

zenity.txt ---> considerado
zenity ------> ignorado porque não tem ponto no nome

----------------------------------------------------------------------------------------------------------------
Nem direita, nem esquerda. Quando se trata de corrupção o Brasil é ambidestro.
(anônimo)

Encryption works. Properly implemented strong crypto systems are one of the few things that you can rely on. Unfortunately, endpoint security is so terrifically weak that NSA can frequently find ways around it. — Edward Snowden



6. Re: Find impreciso

Mauriciodez
Mauriciodez

(usa Debian)

Enviado em 05/05/2017 - 21:45h

listeiro_037 escreveu:

sudo find / -iname zenity*.* 

Ele considera ponto como caractere, de modo que os outros nomes sem ponto são ignorados.


o fato é q de qualquer maneira q eu coloque o find ele não me retorna completo, com ponto, sem ponto, com asterisco, sem asterisco .. não importa a maneira ... ele nunca busca tudo !!!
_______________________________________________________________
" Nem sempre é amigo aquele que te tira do buraco !!! ( Saddam Hussein )"


7. Re: Find impreciso

Perfil removido
removido

(usa Nenhuma)

Enviado em 05/05/2017 - 21:49h

Por que você não usa a opção -regex com expressões regulares? Provavelmente pegaria qualquer cousa com zenity no nome. A opção -iregex é semelhante a -iname. Outra possibilidade que não testei talvez seria usar conectivos para procurar arquivos com mais de um padrão de nome.

----------------------------------------------------------------------------------------------------------------
Nem direita, nem esquerda. Quando se trata de corrupção o Brasil é ambidestro.
(anônimo)

Encryption works. Properly implemented strong crypto systems are one of the few things that you can rely on. Unfortunately, endpoint security is so terrifically weak that NSA can frequently find ways around it. — Edward Snowden



8. Re: Find impreciso

Marcelo Oliver
msoliver

(usa Debian)

Enviado em 05/05/2017 - 22:00h

Mauriciodez escreveu:

msoliver escreveu:

Mauriciodez escreveu:

pessoas ... há uns dias venho notando q o comando '"find" está zuado .... as vezes preciso dar o comando 2x para ele retornar algum resultado de busca ... outras vezes ele não encontra tudo o q tem .. ex: tem varias coisas em diversos lugares como a string "zenity" mais quando eu procuro em / ele não retorna os q estão dentro da /home, e como ele não retorna os da /home, tb estou duvidando q ele retorne TODOS da / ... o que poderia estar acontecendo ???


BoaNoite, Mauricio.
Poste o comando que está executando . . .

mso



marcelo ... é um find simples mesmo
find / -iname string 

mauricio@debian:~$ ls | grep ze*
zenity.txt
mauricio@debian:~$ sudo find / -iname zenity*
[sudo] password for mauricio:
mauricio@debian:~$ sudo find / -iname zenity*
/home/mauricio/zenity.txt
mauricio@debian:~$ sudo find / -iname zenity
/usr/bin/zenity
/usr/share/doc/zenity
/usr/share/zenity
/usr/share/help/C/zenity
/usr/share/help/pt_BR/zenity
/usr/share/help/en_GB/zenity
mauricio@debian:~$ sudo find / -iname zenity*.*
/home/mauricio/zenity.txt
mauricio@debian:~$


Veja q a 1ª vez eu tive q dar o comando 2x para ele retornar alguma coisa .... sem falar q no /home ainda coloquei varios "zenity" dentro das pastas

_______________________________________________________________
" Nem sempre é amigo aquele que te tira do buraco !!! ( Saddam Hussein )"


Mauricio, o comando:
find -iname "ze*.*"
Encontra somente arquivos que tem extensão...
Com o comando:
find -iname "ze*"
Pega com e sem extensão...

att
mso



9. Re: Find impreciso

Mauriciodez
Mauriciodez

(usa Debian)

Enviado em 05/05/2017 - 22:06h

Aí ... vc's tem q ler o q postei ... eu fiz o comando de tudo quanto foi jeito e ele foi impreciso .. o q o find faz ou não não vem ao caso ... olha só a mesma pesquisa feita em modo gráfico

http://ap.imagensbrasil.org/image/j71iwH

deu pra sacar agora o q eu quero dizer com o "find impreciso" ???
_______________________________________________________________
" Nem sempre é amigo aquele que te tira do buraco !!! ( Saddam Hussein )"


10. Re: Find impreciso

Mauriciodez
Mauriciodez

(usa Debian)

Enviado em 05/05/2017 - 23:53h

Olha a diferença do FIND para o LOCATE

mauricio@debian:~$ locate zenity
/home/mauricio/Scripts/zenity_menu.sh
/home/mauricio/zenity.txt
/usr/bin/zenity
/usr/share/doc/zenity
/usr/share/doc/zenity/AUTHORS
/usr/share/doc/zenity/changelog.Debian.gz
/usr/share/doc/zenity/changelog.gz
/usr/share/doc/zenity-common
/usr/share/doc/zenity-common/AUTHORS
/usr/share/doc/zenity-common/changelog.Debian.gz
/usr/share/doc/zenity-common/changelog.gz
/usr/share/doc/zenity-common/copyright
/usr/share/doc/zenity-common/NEWS.gz
/usr/share/doc/zenity-common/README
/usr/share/doc/zenity-common/THANKS.gz
/usr/share/doc/zenity-common/TODO
/usr/share/doc/zenity/copyright
/usr/share/doc/zenity/NEWS.gz
/usr/share/doc/zenity/README
/usr/share/doc/zenity/THANKS.gz
/usr/share/doc/zenity/TODO
/usr/share/help/C/zenity
/usr/share/help/C/zenity/calendar.page
/usr/share/help/C/zenity/color-selection.page
/usr/share/help/C/zenity/entry.page
/usr/share/help/C/zenity/error.page
/usr/share/help/C/zenity/figures
/usr/share/help/C/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/C/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/C/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/C/zenity/figures/zenity-error-screenshot.png
/usr/share/help/C/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/C/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/C/zenity/figures/zenity-information-screenshot.png
/usr/share/help/C/zenity/figures/zenity-list-screenshot.png
/usr/share/help/C/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/C/zenity/figures/zenity-password-screenshot.png
/usr/share/help/C/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/C/zenity/figures/zenity-question-screenshot.png
/usr/share/help/C/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/C/zenity/figures/zenity-text-screenshot.png
/usr/share/help/C/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/C/zenity/file-selection.page
/usr/share/help/C/zenity/forms.page
/usr/share/help/C/zenity/index.page
/usr/share/help/C/zenity/info.page
/usr/share/help/C/zenity/intro.page
/usr/share/help/C/zenity/legal.xml
/usr/share/help/C/zenity/list.page
/usr/share/help/C/zenity/message.page
/usr/share/help/C/zenity/notification.page
/usr/share/help/C/zenity/password.page
/usr/share/help/C/zenity/progress.page
/usr/share/help/C/zenity/question.page
/usr/share/help/C/zenity/scale.page
/usr/share/help/C/zenity/text.page
/usr/share/help/C/zenity/usage.page
/usr/share/help/C/zenity/warning.page
/usr/share/help/en_GB/zenity
/usr/share/help/en_GB/zenity/calendar.page
/usr/share/help/en_GB/zenity/color-selection.page
/usr/share/help/en_GB/zenity/entry.page
/usr/share/help/en_GB/zenity/error.page
/usr/share/help/en_GB/zenity/figures
/usr/share/help/en_GB/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-error-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-information-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-list-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-password-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-question-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-text-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/en_GB/zenity/file-selection.page
/usr/share/help/en_GB/zenity/forms.page
/usr/share/help/en_GB/zenity/index.page
/usr/share/help/en_GB/zenity/info.page
/usr/share/help/en_GB/zenity/intro.page
/usr/share/help/en_GB/zenity/legal.xml
/usr/share/help/en_GB/zenity/list.page
/usr/share/help/en_GB/zenity/message.page
/usr/share/help/en_GB/zenity/notification.page
/usr/share/help/en_GB/zenity/password.page
/usr/share/help/en_GB/zenity/progress.page
/usr/share/help/en_GB/zenity/question.page
/usr/share/help/en_GB/zenity/scale.page
/usr/share/help/en_GB/zenity/text.page
/usr/share/help/en_GB/zenity/usage.page
/usr/share/help/en_GB/zenity/warning.page
/usr/share/help/pt_BR/zenity
/usr/share/help/pt_BR/zenity/calendar.page
/usr/share/help/pt_BR/zenity/color-selection.page
/usr/share/help/pt_BR/zenity/entry.page
/usr/share/help/pt_BR/zenity/error.page
/usr/share/help/pt_BR/zenity/figures
/usr/share/help/pt_BR/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-error-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-information-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-list-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-password-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-question-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-text-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/pt_BR/zenity/file-selection.page
/usr/share/help/pt_BR/zenity/forms.page
/usr/share/help/pt_BR/zenity/index.page
/usr/share/help/pt_BR/zenity/info.page
/usr/share/help/pt_BR/zenity/intro.page
/usr/share/help/pt_BR/zenity/legal.xml
/usr/share/help/pt_BR/zenity/list.page
/usr/share/help/pt_BR/zenity/message.page
/usr/share/help/pt_BR/zenity/notification.page
/usr/share/help/pt_BR/zenity/password.page
/usr/share/help/pt_BR/zenity/progress.page
/usr/share/help/pt_BR/zenity/question.page
/usr/share/help/pt_BR/zenity/scale.page
/usr/share/help/pt_BR/zenity/text.page
/usr/share/help/pt_BR/zenity/usage.page
/usr/share/help/pt_BR/zenity/warning.page
/usr/share/locale/en_CA/LC_MESSAGES/zenity.mo
/usr/share/locale/en_GB/LC_MESSAGES/zenity.mo
/usr/share/locale/en@shaw/LC_MESSAGES/zenity.mo
/usr/share/locale/pt_BR/LC_MESSAGES/zenity.mo
/usr/share/locale/pt/LC_MESSAGES/zenity.mo
/usr/share/man/man1/zenity.1.gz
/usr/share/zenity
/usr/share/zenity/clothes
/usr/share/zenity/clothes/gnome-tshirt.png
/usr/share/zenity/clothes/hawaii-shirt.png
/usr/share/zenity/clothes/monk.png
/usr/share/zenity/clothes/sunglasses.png
/usr/share/zenity/clothes/surfboard.png
/usr/share/zenity/zenity-calendar.png
/usr/share/zenity/zenity-entry.png
/usr/share/zenity/zenity-file.png
/usr/share/zenity/zenity-list.png
/usr/share/zenity/zenity-notification.png
/usr/share/zenity/zenity.png
/usr/share/zenity/zenity-progress.png
/usr/share/zenity/zenity-scale.png
/usr/share/zenity/zenity-text.png
/usr/share/zenity/zenity.ui
/var/lib/dpkg/info/zenity-common.list
/var/lib/dpkg/info/zenity-common.md5sums
/var/lib/dpkg/info/zenity.list
/var/lib/dpkg/info/zenity.md5sums
mauricio@debian:~$


root@debian:/# find -iname zenity
./usr/bin/zenity
./usr/share/doc/zenity
./usr/share/zenity
./usr/share/help/C/zenity
./usr/share/help/pt_BR/zenity
./usr/share/help/en_GB/zenity
root@debian:/#


_______________________________________________________________
" Nem sempre é amigo aquele que te tira do buraco !!! ( Saddam Hussein )"


11. Re: Find impreciso

Perfil removido
removido

(usa Nenhuma)

Enviado em 06/05/2017 - 00:10h

Aqui funciona assim:

# find / -iname zenity*
/var/lib/dpkg/info/zenity-common.md5sums
/var/lib/dpkg/info/zenity.md5sums
/var/lib/dpkg/info/zenity.list
/var/lib/dpkg/info/zenity-common.list
/var/cache/apt/archives/zenity_3.14.0-1_amd64.deb
/var/cache/apt/archives/zenity-common_3.14.0-1_all.deb
/usr/share/locale/ms/LC_MESSAGES/zenity.mo
/usr/share/locale/it/LC_MESSAGES/zenity.mo
/usr/share/locale/gl/LC_MESSAGES/zenity.mo
/usr/share/locale/pa/LC_MESSAGES/zenity.mo
/usr/share/locale/ro/LC_MESSAGES/zenity.mo
/usr/share/locale/tg/LC_MESSAGES/zenity.mo
/usr/share/locale/lt/LC_MESSAGES/zenity.mo
/usr/share/locale/mr/LC_MESSAGES/zenity.mo
/usr/share/locale/da/LC_MESSAGES/zenity.mo
/usr/share/locale/is/LC_MESSAGES/zenity.mo
/usr/share/locale/ar/LC_MESSAGES/zenity.mo
/usr/share/locale/ta/LC_MESSAGES/zenity.mo
/usr/share/locale/hr/LC_MESSAGES/zenity.mo
/usr/share/locale/he/LC_MESSAGES/zenity.mo
/usr/share/locale/kn/LC_MESSAGES/zenity.mo
/usr/share/locale/hi/LC_MESSAGES/zenity.mo
/usr/share/locale/eu/LC_MESSAGES/zenity.mo
/usr/share/locale/nn/LC_MESSAGES/zenity.mo
/usr/share/locale/te/LC_MESSAGES/zenity.mo
/usr/share/locale/or/LC_MESSAGES/zenity.mo
/usr/share/locale/xh/LC_MESSAGES/zenity.mo
/usr/share/locale/tr/LC_MESSAGES/zenity.mo
/usr/share/locale/ast/LC_MESSAGES/zenity.mo
/usr/share/locale/vi/LC_MESSAGES/zenity.mo
/usr/share/locale/de/LC_MESSAGES/zenity.mo
/usr/share/locale/ps/LC_MESSAGES/zenity.mo
/usr/share/locale/id/LC_MESSAGES/zenity.mo
/usr/share/locale/et/LC_MESSAGES/zenity.mo
/usr/share/locale/th/LC_MESSAGES/zenity.mo
/usr/share/locale/cs/LC_MESSAGES/zenity.mo
/usr/share/locale/sk/LC_MESSAGES/zenity.mo
/usr/share/locale/bg/LC_MESSAGES/zenity.mo
/usr/share/locale/nl/LC_MESSAGES/zenity.mo
/usr/share/locale/ne/LC_MESSAGES/zenity.mo
/usr/share/locale/fr/LC_MESSAGES/zenity.mo
/usr/share/locale/es/LC_MESSAGES/zenity.mo
/usr/share/locale/pt/LC_MESSAGES/zenity.mo
/usr/share/locale/pt_BR/LC_MESSAGES/zenity.mo
/usr/share/locale/lv/LC_MESSAGES/zenity.mo
/usr/share/locale/pl/LC_MESSAGES/zenity.mo
/usr/share/locale/bn_IN/LC_MESSAGES/zenity.mo
/usr/share/locale/ug/LC_MESSAGES/zenity.mo
/usr/share/locale/be/LC_MESSAGES/zenity.mo
/usr/share/locale/oc/LC_MESSAGES/zenity.mo
/usr/share/locale/ku/LC_MESSAGES/zenity.mo
/usr/share/locale/en_GB/LC_MESSAGES/zenity.mo
/usr/share/locale/ga/LC_MESSAGES/zenity.mo
/usr/share/locale/hu/LC_MESSAGES/zenity.mo
/usr/share/locale/zh_TW/LC_MESSAGES/zenity.mo
/usr/share/locale/ru/LC_MESSAGES/zenity.mo
/usr/share/locale/sv/LC_MESSAGES/zenity.mo
/usr/share/locale/bs/LC_MESSAGES/zenity.mo
/usr/share/locale/ka/LC_MESSAGES/zenity.mo
/usr/share/locale/zh_CN/LC_MESSAGES/zenity.mo
/usr/share/locale/ja/LC_MESSAGES/zenity.mo
/usr/share/locale/mai/LC_MESSAGES/zenity.mo
/usr/share/locale/en@shaw/LC_MESSAGES/zenity.mo
/usr/share/locale/en_CA/LC_MESSAGES/zenity.mo
/usr/share/locale/mi/LC_MESSAGES/zenity.mo
/usr/share/locale/sl/LC_MESSAGES/zenity.mo
/usr/share/locale/el/LC_MESSAGES/zenity.mo
/usr/share/locale/ca/LC_MESSAGES/zenity.mo
/usr/share/locale/az/LC_MESSAGES/zenity.mo
/usr/share/locale/fi/LC_MESSAGES/zenity.mo
/usr/share/locale/mk/LC_MESSAGES/zenity.mo
/usr/share/locale/uk/LC_MESSAGES/zenity.mo
/usr/share/locale/sr/LC_MESSAGES/zenity.mo
/usr/share/locale/mg/LC_MESSAGES/zenity.mo
/usr/share/locale/rw/LC_MESSAGES/zenity.mo
/usr/share/locale/ml/LC_MESSAGES/zenity.mo
/usr/share/locale/ca@valencia/LC_MESSAGES/zenity.mo
/usr/share/locale/sq/LC_MESSAGES/zenity.mo
/usr/share/locale/eo/LC_MESSAGES/zenity.mo
/usr/share/locale/mn/LC_MESSAGES/zenity.mo
/usr/share/locale/zh_HK/LC_MESSAGES/zenity.mo
/usr/share/locale/af/LC_MESSAGES/zenity.mo
/usr/share/locale/bn/LC_MESSAGES/zenity.mo
/usr/share/locale/be@latin/LC_MESSAGES/zenity.mo
/usr/share/locale/cy/LC_MESSAGES/zenity.mo
/usr/share/locale/sr@latin/LC_MESSAGES/zenity.mo
/usr/share/locale/ko/LC_MESSAGES/zenity.mo
/usr/share/locale/nb/LC_MESSAGES/zenity.mo
/usr/share/locale/as/LC_MESSAGES/zenity.mo
/usr/share/locale/am/LC_MESSAGES/zenity.mo
/usr/share/locale/dz/LC_MESSAGES/zenity.mo
/usr/share/locale/si/LC_MESSAGES/zenity.mo
/usr/share/locale/fa/LC_MESSAGES/zenity.mo
/usr/share/locale/gu/LC_MESSAGES/zenity.mo
/usr/share/man/man1/zenity.1.gz
/usr/share/doc/zenity
/usr/share/doc/zenity-common
/usr/share/zenity
/usr/share/zenity/zenity-progress.png
/usr/share/zenity/zenity-list.png
/usr/share/zenity/zenity-text.png
/usr/share/zenity/zenity-calendar.png
/usr/share/zenity/zenity.ui
/usr/share/zenity/zenity-scale.png
/usr/share/zenity/zenity.png
/usr/share/zenity/zenity-notification.png
/usr/share/zenity/zenity-entry.png
/usr/share/zenity/zenity-file.png
/usr/share/help/gl/zenity
/usr/share/help/gl/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/gl/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/gl/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/gl/zenity/figures/zenity-text-screenshot.png
/usr/share/help/gl/zenity/figures/zenity-question-screenshot.png
/usr/share/help/gl/zenity/figures/zenity-list-screenshot.png
/usr/share/help/gl/zenity/figures/zenity-information-screenshot.png
/usr/share/help/gl/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/gl/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/gl/zenity/figures/zenity-error-screenshot.png
/usr/share/help/gl/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/gl/zenity/figures/zenity-password-screenshot.png
/usr/share/help/gl/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/gl/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/gl/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/da/zenity
/usr/share/help/da/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/da/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/da/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/da/zenity/figures/zenity-text-screenshot.png
/usr/share/help/da/zenity/figures/zenity-question-screenshot.png
/usr/share/help/da/zenity/figures/zenity-list-screenshot.png
/usr/share/help/da/zenity/figures/zenity-information-screenshot.png
/usr/share/help/da/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/da/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/da/zenity/figures/zenity-error-screenshot.png
/usr/share/help/da/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/da/zenity/figures/zenity-password-screenshot.png
/usr/share/help/da/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/da/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/da/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/C/zenity
/usr/share/help/C/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/C/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/C/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/C/zenity/figures/zenity-text-screenshot.png
/usr/share/help/C/zenity/figures/zenity-question-screenshot.png
/usr/share/help/C/zenity/figures/zenity-list-screenshot.png
/usr/share/help/C/zenity/figures/zenity-information-screenshot.png
/usr/share/help/C/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/C/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/C/zenity/figures/zenity-error-screenshot.png
/usr/share/help/C/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/C/zenity/figures/zenity-password-screenshot.png
/usr/share/help/C/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/C/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/C/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/eu/zenity
/usr/share/help/eu/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/eu/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/eu/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/eu/zenity/figures/zenity-text-screenshot.png
/usr/share/help/eu/zenity/figures/zenity-question-screenshot.png
/usr/share/help/eu/zenity/figures/zenity-list-screenshot.png
/usr/share/help/eu/zenity/figures/zenity-information-screenshot.png
/usr/share/help/eu/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/eu/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/eu/zenity/figures/zenity-error-screenshot.png
/usr/share/help/eu/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/eu/zenity/figures/zenity-password-screenshot.png
/usr/share/help/eu/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/eu/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/eu/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/de/zenity
/usr/share/help/de/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/de/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/de/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/de/zenity/figures/zenity-text-screenshot.png
/usr/share/help/de/zenity/figures/zenity-question-screenshot.png
/usr/share/help/de/zenity/figures/zenity-list-screenshot.png
/usr/share/help/de/zenity/figures/zenity-information-screenshot.png
/usr/share/help/de/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/de/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/de/zenity/figures/zenity-error-screenshot.png
/usr/share/help/de/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/de/zenity/figures/zenity-password-screenshot.png
/usr/share/help/de/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/de/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/de/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/cs/zenity
/usr/share/help/cs/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/cs/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/cs/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/cs/zenity/figures/zenity-text-screenshot.png
/usr/share/help/cs/zenity/figures/zenity-question-screenshot.png
/usr/share/help/cs/zenity/figures/zenity-list-screenshot.png
/usr/share/help/cs/zenity/figures/zenity-information-screenshot.png
/usr/share/help/cs/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/cs/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/cs/zenity/figures/zenity-error-screenshot.png
/usr/share/help/cs/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/cs/zenity/figures/zenity-password-screenshot.png
/usr/share/help/cs/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/cs/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/cs/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/bg/zenity
/usr/share/help/bg/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/bg/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/bg/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/bg/zenity/figures/zenity-text-screenshot.png
/usr/share/help/bg/zenity/figures/zenity-question-screenshot.png
/usr/share/help/bg/zenity/figures/zenity-list-screenshot.png
/usr/share/help/bg/zenity/figures/zenity-information-screenshot.png
/usr/share/help/bg/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/bg/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/bg/zenity/figures/zenity-error-screenshot.png
/usr/share/help/bg/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/bg/zenity/figures/zenity-password-screenshot.png
/usr/share/help/bg/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/bg/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/bg/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/fr/zenity
/usr/share/help/fr/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/fr/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/fr/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/fr/zenity/figures/zenity-text-screenshot.png
/usr/share/help/fr/zenity/figures/zenity-question-screenshot.png
/usr/share/help/fr/zenity/figures/zenity-list-screenshot.png
/usr/share/help/fr/zenity/figures/zenity-information-screenshot.png
/usr/share/help/fr/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/fr/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/fr/zenity/figures/zenity-error-screenshot.png
/usr/share/help/fr/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/fr/zenity/figures/zenity-password-screenshot.png
/usr/share/help/fr/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/fr/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/fr/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/es/zenity
/usr/share/help/es/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/es/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/es/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/es/zenity/figures/zenity-text-screenshot.png
/usr/share/help/es/zenity/figures/zenity-question-screenshot.png
/usr/share/help/es/zenity/figures/zenity-list-screenshot.png
/usr/share/help/es/zenity/figures/zenity-information-screenshot.png
/usr/share/help/es/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/es/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/es/zenity/figures/zenity-error-screenshot.png
/usr/share/help/es/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/es/zenity/figures/zenity-password-screenshot.png
/usr/share/help/es/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/es/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/es/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/pt_BR/zenity
/usr/share/help/pt_BR/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-text-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-question-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-list-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-information-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-error-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-password-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/oc/zenity
/usr/share/help/oc/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/oc/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/oc/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/oc/zenity/figures/zenity-text-screenshot.png
/usr/share/help/oc/zenity/figures/zenity-question-screenshot.png
/usr/share/help/oc/zenity/figures/zenity-list-screenshot.png
/usr/share/help/oc/zenity/figures/zenity-information-screenshot.png
/usr/share/help/oc/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/oc/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/oc/zenity/figures/zenity-error-screenshot.png
/usr/share/help/oc/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/oc/zenity/figures/zenity-password-screenshot.png
/usr/share/help/oc/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/oc/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/oc/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/en_GB/zenity
/usr/share/help/en_GB/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-text-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-question-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-list-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-information-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-error-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-password-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/hu/zenity
/usr/share/help/hu/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/hu/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/hu/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/hu/zenity/figures/zenity-text-screenshot.png
/usr/share/help/hu/zenity/figures/zenity-question-screenshot.png
/usr/share/help/hu/zenity/figures/zenity-list-screenshot.png
/usr/share/help/hu/zenity/figures/zenity-information-screenshot.png
/usr/share/help/hu/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/hu/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/hu/zenity/figures/zenity-error-screenshot.png
/usr/share/help/hu/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/hu/zenity/figures/zenity-password-screenshot.png
/usr/share/help/hu/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/hu/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/hu/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/ru/zenity
/usr/share/help/ru/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/ru/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/ru/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/ru/zenity/figures/zenity-text-screenshot.png
/usr/share/help/ru/zenity/figures/zenity-question-screenshot.png
/usr/share/help/ru/zenity/figures/zenity-list-screenshot.png
/usr/share/help/ru/zenity/figures/zenity-information-screenshot.png
/usr/share/help/ru/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/ru/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/ru/zenity/figures/zenity-error-screenshot.png
/usr/share/help/ru/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/ru/zenity/figures/zenity-password-screenshot.png
/usr/share/help/ru/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/ru/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/ru/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/sv/zenity
/usr/share/help/sv/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/sv/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/sv/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/sv/zenity/figures/zenity-text-screenshot.png
/usr/share/help/sv/zenity/figures/zenity-question-screenshot.png
/usr/share/help/sv/zenity/figures/zenity-list-screenshot.png
/usr/share/help/sv/zenity/figures/zenity-information-screenshot.png
/usr/share/help/sv/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/sv/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/sv/zenity/figures/zenity-error-screenshot.png
/usr/share/help/sv/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/sv/zenity/figures/zenity-password-screenshot.png
/usr/share/help/sv/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/sv/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/sv/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/zh_CN/zenity
/usr/share/help/zh_CN/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/zh_CN/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/zh_CN/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/zh_CN/zenity/figures/zenity-text-screenshot.png
/usr/share/help/zh_CN/zenity/figures/zenity-question-screenshot.png
/usr/share/help/zh_CN/zenity/figures/zenity-list-screenshot.png
/usr/share/help/zh_CN/zenity/figures/zenity-information-screenshot.png
/usr/share/help/zh_CN/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/zh_CN/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/zh_CN/zenity/figures/zenity-error-screenshot.png
/usr/share/help/zh_CN/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/zh_CN/zenity/figures/zenity-password-screenshot.png
/usr/share/help/zh_CN/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/zh_CN/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/zh_CN/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/ja/zenity
/usr/share/help/ja/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/ja/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/ja/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/ja/zenity/figures/zenity-text-screenshot.png
/usr/share/help/ja/zenity/figures/zenity-question-screenshot.png
/usr/share/help/ja/zenity/figures/zenity-list-screenshot.png
/usr/share/help/ja/zenity/figures/zenity-information-screenshot.png
/usr/share/help/ja/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/ja/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/ja/zenity/figures/zenity-error-screenshot.png
/usr/share/help/ja/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/ja/zenity/figures/zenity-password-screenshot.png
/usr/share/help/ja/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/ja/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/ja/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/sl/zenity
/usr/share/help/sl/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/sl/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/sl/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/sl/zenity/figures/zenity-text-screenshot.png
/usr/share/help/sl/zenity/figures/zenity-question-screenshot.png
/usr/share/help/sl/zenity/figures/zenity-list-screenshot.png
/usr/share/help/sl/zenity/figures/zenity-information-screenshot.png
/usr/share/help/sl/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/sl/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/sl/zenity/figures/zenity-error-screenshot.png
/usr/share/help/sl/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/sl/zenity/figures/zenity-password-screenshot.png
/usr/share/help/sl/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/sl/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/sl/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/el/zenity
/usr/share/help/el/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/el/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/el/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/el/zenity/figures/zenity-text-screenshot.png
/usr/share/help/el/zenity/figures/zenity-question-screenshot.png
/usr/share/help/el/zenity/figures/zenity-list-screenshot.png
/usr/share/help/el/zenity/figures/zenity-information-screenshot.png
/usr/share/help/el/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/el/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/el/zenity/figures/zenity-error-screenshot.png
/usr/share/help/el/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/el/zenity/figures/zenity-password-screenshot.png
/usr/share/help/el/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/el/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/el/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/ca/zenity
/usr/share/help/ca/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/ca/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/ca/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/ca/zenity/figures/zenity-text-screenshot.png
/usr/share/help/ca/zenity/figures/zenity-question-screenshot.png
/usr/share/help/ca/zenity/figures/zenity-list-screenshot.png
/usr/share/help/ca/zenity/figures/zenity-information-screenshot.png
/usr/share/help/ca/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/ca/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/ca/zenity/figures/zenity-error-screenshot.png
/usr/share/help/ca/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/ca/zenity/figures/zenity-password-screenshot.png
/usr/share/help/ca/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/ca/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/ca/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/fi/zenity
/usr/share/help/fi/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/fi/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/fi/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/fi/zenity/figures/zenity-text-screenshot.png
/usr/share/help/fi/zenity/figures/zenity-question-screenshot.png
/usr/share/help/fi/zenity/figures/zenity-list-screenshot.png
/usr/share/help/fi/zenity/figures/zenity-information-screenshot.png
/usr/share/help/fi/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/fi/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/fi/zenity/figures/zenity-error-screenshot.png
/usr/share/help/fi/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/fi/zenity/figures/zenity-password-screenshot.png
/usr/share/help/fi/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/fi/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/fi/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/uk/zenity
/usr/share/help/uk/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/uk/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/uk/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/uk/zenity/figures/zenity-text-screenshot.png
/usr/share/help/uk/zenity/figures/zenity-question-screenshot.png
/usr/share/help/uk/zenity/figures/zenity-list-screenshot.png
/usr/share/help/uk/zenity/figures/zenity-information-screenshot.png
/usr/share/help/uk/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/uk/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/uk/zenity/figures/zenity-error-screenshot.png
/usr/share/help/uk/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/uk/zenity/figures/zenity-password-screenshot.png
/usr/share/help/uk/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/uk/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/uk/zenity/figures/zenity-scale-screenshot.png
/usr/bin/zenity


----------------------------------------------------------------------------------------------------------------
Nem direita, nem esquerda. Quando se trata de corrupção o Brasil é ambidestro.
(anônimo)

Encryption works. Properly implemented strong crypto systems are one of the few things that you can rely on. Unfortunately, endpoint security is so terrifically weak that NSA can frequently find ways around it. — Edward Snowden



12. Re: Find impreciso

Mauriciodez
Mauriciodez

(usa Debian)

Enviado em 06/05/2017 - 00:31h

listeiro_037 escreveu:

Aqui funciona assim:

# find / -iname zenity* 



olha só como essa p*rra tá doida ... no 4º post vc pode ver q dei o mesmo comando q vc postou 2x e só na segunda vez ele me retornou uma mixaria de arquivos.

Agora olha só o q aconteceu ... dei o mesmo comando ( de novo ) ... na primeira vez ele não retornou nada ( como no post 4 ) .. mas só q na 2ª vez ele retornou.



mauricio@debian:~$ sudo find / -iname zenity*
[sudo] password for mauricio:
mauricio@debian:~$ sudo find / -iname zenity*
/usr/bin/zenity
/usr/share/doc/zenity
/usr/share/doc/zenity-common
/usr/share/zenity
/usr/share/zenity/zenity.png
/usr/share/zenity/zenity-notification.png
/usr/share/zenity/zenity.ui
/usr/share/zenity/zenity-text.png
/usr/share/zenity/zenity-entry.png
/usr/share/zenity/zenity-scale.png
/usr/share/zenity/zenity-calendar.png
/usr/share/zenity/zenity-progress.png
/usr/share/zenity/zenity-list.png
/usr/share/zenity/zenity-file.png
/usr/share/help/C/zenity
/usr/share/help/C/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/C/zenity/figures/zenity-error-screenshot.png
/usr/share/help/C/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/C/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/C/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/C/zenity/figures/zenity-information-screenshot.png
/usr/share/help/C/zenity/figures/zenity-list-screenshot.png
/usr/share/help/C/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/C/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/C/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/C/zenity/figures/zenity-password-screenshot.png
/usr/share/help/C/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/C/zenity/figures/zenity-text-screenshot.png
/usr/share/help/C/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/C/zenity/figures/zenity-question-screenshot.png
/usr/share/help/pt_BR/zenity
/usr/share/help/pt_BR/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-error-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-information-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-list-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-password-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-text-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/pt_BR/zenity/figures/zenity-question-screenshot.png
/usr/share/help/en_GB/zenity
/usr/share/help/en_GB/zenity/figures/zenity-notification-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-error-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-scale-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-fileselection-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-calendar-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-information-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-list-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-warning-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-progress-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-colorselection-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-password-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-forms-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-text-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-entry-screenshot.png
/usr/share/help/en_GB/zenity/figures/zenity-question-screenshot.png
/usr/share/locale/en_CA/LC_MESSAGES/zenity.mo
/usr/share/locale/pt/LC_MESSAGES/zenity.mo
/usr/share/locale/pt_BR/LC_MESSAGES/zenity.mo
/usr/share/locale/en_GB/LC_MESSAGES/zenity.mo
/usr/share/locale/en@shaw/LC_MESSAGES/zenity.mo
/usr/share/man/man1/zenity.1.gz
/var/lib/dpkg/info/zenity.md5sums
/var/lib/dpkg/info/zenity-common.list
/var/lib/dpkg/info/zenity-common.md5sums
/var/lib/dpkg/info/zenity.list
/home/mauricio/Área de trabalho/Zenity Menu.desktop
/home/mauricio/Scripts/zenity_menu.sh
/home/mauricio/.local/share/Trash/files/zenity.txt
/home/mauricio/.local/share/Trash/info/zenity.txt.trashinfo
/home/mauricio/.local/share/applications/Zenity menu.desktop
mauricio@debian:~$


agora me fala ... ele está ou não zuado ??? como arrumo ???
_______________________________________________________________
" Nem sempre é amigo aquele que te tira do buraco !!! ( Saddam Hussein )"






Patrocínio

Site hospedado pelo provedor RedeHost.
Linux banner

Destaques

Artigos

Dicas

Tópicos

Top 10 do mês

Scripts