GNOME Bugzilla – Bug 336751
error in example in zenity man page
Last modified: 2006-03-31 22:50:29 UTC
Forwarded from: https://launchpad.net/distros/ubuntu/+source/zenity/+bug/21683 The 'zenity' man page has this example: Display a progress dialog while searching for all the postscript files in your home directory find `echo $HOME` '*.ps' | zenity --progress --pulsate That's not how find works. You need to use "-name" if you want find to find .ps files. And what is the point of the backticks and the echo? Just "find $HOME" is the same as "find `echo $HOME`". This would be a better example: find $HOME -name '*.ps' | zenity --progress --pulsate
Created attachment 62471 [details] [review] fix manpage's use of find
Fixed, thanks! 2006-03-31 Lucas Rocha <lucasr@gnome.org> * data/zenity.1: fix example on progress dialog (Fixed bug #336751).