Problems with the new base-files-4.0-5?

Cyrille Lefevre cyrille.lefevre-lists@laposte.net
Fri Mar 18 02:51:00 GMT 2011


Le 17/03/2011 23:43, Angelo Graziosi a écrit :

> p='/proc/registry/HKEY_CURRENT_USER/Software/Microsoft/Windows
> NT/CurrentVersion/Windows/Device'
>
> [ -e "${p}" ] && read -r PRINTER < "${p}" && PRINTER=${PRINTER%%,*}

read -r "$p" returns 1 bcoz "The return code is zero, unless end-of-file 
is encountered"...

alternative :

[ -e "${p}" ] && IFS=',' read -r PRINTER dummy < "${p}"

Regards,

Cyrille Lefevre
-- 
mailto:Cyrille.Lefevre-lists@laposte.net



--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple



More information about the Cygwin mailing list