Hi Ive been trying to get my data off one drive and onto another using this command and variants;
sudo tar -cvpzf alsmain2018.tar.gz --exclude=alsmain2018.tar.gz --exclude-caches --one-file-system /media/alistair/USB450G/backintime/alsmain/ --exclude-from <(find /media/alistair/USB450G/backintime/alsmain/ -size +100M)
which results in:
tar: /dev/fd/63: No such file or directory
tar: Error is not recoverable: exiting now
Ive tried removing last directory backslash and if I run the command: sudo find /media/alistair/USB450G/backintime/alsmain/ -size +100M
find works as expected, finding files over 100m.
If I run command: sudo tar -cvpzf alsmain2018.tar.gz --exclude=alsmain2018.tar.gz --exclude-caches --one-file-system /media/alistair/USB450G/backintime/alsmain/
backup works no errors.
Can anyone figure why my find is wrong?
Thanks kindly, Al.