From Bugzilla Helper: User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.4) Gecko/20010913 Description of problem: If you write "touch 11111111" or "touch 1111111111" touch display message and file : touch: file arguments missing Try `touch --help' for more information. This error happend only if filename is 11111111 (8x1) or 1111111111 (10x1). Version-Release number of selected component (if applicable): How reproducible: Always Steps to Reproduce: 1. write only command "touch 11111111". Additional info: $ touch 11111111 touch: file arguments missing Try `touch --help' for more information. $ ls 11111111 ls: 11111111: No such file or directory $ which touch /bin/touch $ rpm -qf /bin/touch fileutils-4.0-21 $ touch --version touch (GNU fileutils) 4.0p ... $
Works in the current versions. [root@zell root]# touch 11111111 [root@zell root]# touch 1111111111 [root@zell root]# ls -l 11* -rw-r--r-- 1 root root 0 Sep 27 14:11 11111111 -rw-r--r-- 1 root root 0 Sep 27 14:11 1111111111 [root@zell root]# rpm -q fileutils fileutils-4.1-4 [root@zell root]#