(Jul 27 2005 13:57) Willy Mularto wrote: > One of my application need to know where does mysql.h located? Anybody can > help? Thank you very much.
swup --search-file mysql\\.h OR swup --search-file 'mysql\.h' --search-file uses a regular expression, so "." is treated as "any character" unless escaped. Since the shell also uses '\' as escape character, you need to either double escape it (\\) or keep the regular expression in single quotes. kind regards c -- Christian H. Toldnes Trustix Developer _______________________________________________ tsl-discuss mailing list [email protected] http://lists.trustix.org/mailman/listinfo/tsl-discuss
