Le vendredi 17 octobre 2008, ottomeister a écrit : > I wonder whether 'mkfifo' has become a shell builtin in the version of > 'ksh' on this CentOS system. Philippe or Christian, perhaps you could > run these commands in the CentOS 'ksh': > > rpm -q ksh > builtin > > It would also be interesting to know what the exit status of 'mkfifo' is > when it successfully creates a FIFO. > mkfifo is not builtin and seems to return good status. The problem with mkfifo in utconfig seems to be that the file already exists.
$ rpm -q ksh ksh-20060214-1.7 $ builtin : . [ alarm alias bg /bin/basename /bin/cat /bin/chmod /bin/cmp /bin/cut /bin/dirname /bin/head /bin/uname break builtin cd command continue disown echo eval exec exit export false fc fg getconf getopts hash hist jobs kill let login newgrp print printf pwd read readonly return set shift sleep test trap true type typeset ulimit umask unalias unset /usr/bin/logname /usr/bin/wc vmap vpath wait whence $ mkfifo kk $ echo $? 0 $ mkfifo kk mkfifo: ne peut créer le fifo `kk': Le fichier existe. $ echo $? 1 -- Philippe BOURDEU d'AGUERRE AIME - Campus de l'INSA http://www.aime-toulouse.fr/ 135, av. de Rangueil Tel +33 561 559 885 31077 TOULOUSE Cedex 4 - FRANCE Fax +33 561 559 870 _______________________________________________ SunRay-Users mailing list [email protected] http://www.filibeto.org/mailman/listinfo/sunray-users
