GNU bug report logs - #16889
erratic behavior of cp command i.e while copying files (using *) from one directory to another directory

Previous Next

Package: coreutils;

Reported by: Anil Kumar <linuxdeveloper7 <at> gmail.com>

Date: Wed, 26 Feb 2014 16:45:01 UTC

Severity: normal

Tags: notabug

Done: Pádraig Brady <P <at> draigBrady.com>

Bug is archived. No further changes may be made.

Full log


Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Anil Kumar <linuxdeveloper7 <at> gmail.com>
To: bug-coreutils <at> gnu.org
Subject: erratic behavior of cp command i.e while copying files (using *) from
 one directory to another directory
Date: Wed, 26 Feb 2014 18:06:54 +0530
Hello

I have observed, one erratic behavior of cp command i.e while copying
files (using *) from one directory to another directory if
we miss destination directory then cp command copies content of 1st
file into 2nd file of same source directory instead of giving any
error.

Here is the scenario:

#ls -l
total 8
drwxr-xr-x 2 root root 4096 Feb 26 17:34 ddir
drwxr-xr-x 2 root root 4096 Feb 26 17:36 sdir


# echo "hello" > sdir/hello.txt
# echo "bye" > sdir/bye.txt

# cat sdir/hello.txt
hello

# cat sdir/bye.txt
bye

# cp sdir/*.txt

# cat sdir/hello.txt
bye

# cat sdir/bye.txt
bye

[Anil] Not sure, why "cp sdir/*.txt" command has copied data of
bye.txt into hello.txt ? I think, its not desired behavior.
 'cp' command should have produced error e.g destination is missing etc .

One more example of similar behavior:
# echo "hello" > sdir/hello.txt
# echo "bye" > sdir/bye.txt

# cat sdir/hello.txt
hello

# cat sdir/bye.txt
bye

# cp sdir/*

# cat sdir/hello.txt
bye

# cat sdir/bye.txt
bye

[Anil]Here again "bye" has been copied into hello.txt which is not
desired behavior.

Here is strace output command "strace  cp sdir/*"

stat("sdir/hello.txt", {st_mode=S_IFREG|0644, st_size=6, ...}) = 0
stat("sdir/bye.txt", {st_mode=S_IFREG|0644, st_size=4, ...}) = 0
stat("sdir/hello.txt", {st_mode=S_IFREG|0644, st_size=6, ...}) = 0
open("sdir/bye.txt", O_RDONLY)          = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4, ...}) = 0
open("sdir/hello.txt", O_WRONLY|O_TRUNC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
fadvise64(3, 0, 0, POSIX_FADV_SEQUENTIAL) = 0
read(3, "bye\n", 65536)                 = 4
write(4, "bye\n", 4)                    = 4
read(3, "", 65536)                      = 0
close(4)                                = 0
close(3)                                = 0
lseek(0, 0, SEEK_CUR)                   = -1 ESPIPE (Illegal seek)
close(0)                                = 0
close(1)                                = 0
close(2)                                = 0
exit_group(0)                           = ?




This bug report was last modified 11 years and 143 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.