Displaying 1 result from an estimated 1 matches for "typechange".
2006 Feb 20
1
DO NOT REPLY [Bug 3527] New: rsync: tries to chdir() into a device
...hmfs, and that may be some cause
for that bug, because previously it ran on a normal ext3 partition and
I didn't see this message.
The script makes some files, devices, symlinks and directories; then changes
the type of nearly all entries and tries to combine them.
#!/bin/bash
mkdir typechange
(
cd typechange
for i in 1 2 3 4
do
echo file > file-$i
cp -a /dev/zero device-$i
ln -s file-$i symlink-$i
mkdir dir-$i
echo sub > dir-$i/sub-entry
done
)
mkdir target
(
cd target
for i in file devic...