diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-07-26 05:55:04 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-07-26 05:55:04 +0000 |
commit | 3012a07ac593661d173c9239f52a20a19e598657 (patch) | |
tree | 7833afc0bdc816494216b8ab864f921e7d422a31 /urpmq | |
parent | b6502109dfa5e54234c3e8a794c961c69441952b (diff) | |
download | urpmi-3012a07ac593661d173c9239f52a20a19e598657.tar urpmi-3012a07ac593661d173c9239f52a20a19e598657.tar.gz urpmi-3012a07ac593661d173c9239f52a20a19e598657.tar.bz2 urpmi-3012a07ac593661d173c9239f52a20a19e598657.tar.xz urpmi-3012a07ac593661d173c9239f52a20a19e598657.zip |
Add an option -Y to urpmq (fuzzy and case insensitive)
Diffstat (limited to 'urpmq')
-rwxr-xr-x | urpmq | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -82,6 +82,7 @@ usage: ") . N(" -P - do not search in provides to find package (default). ") . N(" -R - reverse search to what requires package. ") . N(" -y - impose fuzzy search (same as --fuzzy). +") . N(" -Y - like -y, but forces to match case-insensitively. ") . N(" -s - next package is a source package (same as --src). ") . N(" -i - print useful information in human readable form. ") . N(" -g - print groups with name also. @@ -182,6 +183,7 @@ if ($urpm::args::options{list_aliases}) { [ @names ], use_provides => $urpm::args::options{use_provides}, fuzzy => $urpm::args::options{fuzzy}, + caseinsensitive => $urpm::args::options{caseinsensitive}, all => $urpm::args::options{all}, ) or $urpm::args::options{force} or exit 1; @@ -192,6 +194,7 @@ if ($urpm::args::options{list_aliases}) { [ @src_names ], use_provides => $urpm::args::options{use_provides}, fuzzy => $urpm::args::options{fuzzy}, + caseinsensitive => $urpm::args::options{caseinsensitive}, src => 1, ) or $urpm::args::options{force} or exit 1; |