Comment 43 for bug 64067

Revision history for this message
In , Steve (steve-redhat-bugs) wrote :

As of F19, the cp command has the -v (--verbose) option that shows what files are being copied:

$ man cp
...
       -v, --verbose
              explain what is being done
...

$ tar -xf python-bugzilla-0.9.0.tar.bz2
$ ls
python-bugzilla-0.9.0/ python-bugzilla-0.9.0.tar.bz2
$
$ cp -v -a python-bugzilla-0.9.0 foo-1
‘python-bugzilla-0.9.0’ -> ‘foo-1’
‘python-bugzilla-0.9.0/.mailmap’ -> ‘foo-1/.mailmap’
‘python-bugzilla-0.9.0/bz-api-notes.txt’ -> ‘foo-1/bz-api-notes.txt’
... [snipped] ...
‘python-bugzilla-0.9.0/bin/bugzilla’ -> ‘foo-1/bin/bugzilla’
‘python-bugzilla-0.9.0/bugzilla.1’ -> ‘foo-1/bugzilla.1’
‘python-bugzilla-0.9.0/setup.py’ -> ‘foo-1/setup.py’
$ ls
foo-1/ python-bugzilla-0.9.0/ python-bugzilla-0.9.0.tar.bz2
$

Tested with:
$ rpm -qf `which cp`
coreutils-8.21-11.fc19.x86_64