Bug 54086

Summary: touch: file arguments missing
Product: [Retired] Red Hat Linux Reporter: Jussi Johansson <kettu>
Component: fileutilsAssignee: Bernhard Rosenkraenzer <bero>
Status: CLOSED CURRENTRELEASE QA Contact: Aaron Brown <abrown>
Severity: medium Docs Contact:
Priority: medium    
Version: 6.2   
Target Milestone: ---   
Target Release: ---   
Hardware: i386   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2001-09-27 07:04:10 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Jussi Johansson 2001-09-27 07:04:06 UTC
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
...
$

Comment 1 Bernhard Rosenkraenzer 2001-09-27 12:12:39 UTC
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]#