https://bugzilla.novell.com/show_bug.cgi?id=349181 User ms@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=349181#c9 Marcus Schaefer <ms@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |ASSIGNED Info Provider|ms@novell.com | --- Comment #9 from Marcus Schaefer <ms@novell.com> 2008-12-02 05:54:57 MST --- I'll give you an example: #====================================== # baseStripMans # - remove all manual pages, except # one given as parametr # - params - name of keep man pages #-------------------------------------- function baseStripMans { local keepMans="$@" local directories=" /opt/gnome/share/man /usr/local/man /usr/share/man /opt/kde3/share/man/packages " find $directories -mindepth 1 -maxdepth 2 -type f 2>/dev/null |\ baseStripAndKeep ${keepMans} } could you change it to: #====================================== # baseStripMans #-------------------------------------- function baseStripMans { # /.../ # remove all manual pages, except # one given as parametr # params - name of keep man pages # ---- local keepMans="$@" local directories=" /opt/gnome/share/man /usr/local/man /usr/share/man /opt/kde3/share/man/packages " find $directories -mindepth 1 -maxdepth 2 -type f 2>/dev/null |\ baseStripAndKeep ${keepMans} } Thanks -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.