On Wed, 16 Oct 2024 00:29:30 +0900
Takashi Yano wrote:
> IFS=':'; for a in ${PATH[@]}; do find $a -name cygwin1.dll -exec ls -l '{}'
> \; ; done
Sorry, use
IFS=':'; for a in ${PATH[@]}; do find $a -maxdepth 1 -name cygwin1.dll -exec ls
-l '{}' \; ; done
instead.
--
Takashi Yano <[email protected]>
--
Problem reports: https://cygwin.com/problems.html
FAQ: https://cygwin.com/faq/
Documentation: https://cygwin.com/docs.html
Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple

