URL: https://linuxfr.org/forums/linux-redhat/posts/tar-split-output Title: tar + split + output Authors: raguetrenaud Date: 2015年07月13日T14:00:55+02:00 License: CC By-SA Tags: tar et split Score: -2 Hello, I have this command: $TAR -cvf - $SOURCEDIR $EXCLUDEDIR | split --bytes=1999m - $BACKUP_DEVICE 1>/usr/backup/backuped_files.lst this part is working as expected: $TAR -cvf - $SOURCEDIR $EXCLUDEDIR | split --bytes=1999m - $BACKUP_DEVICE this part is not working: 1>/usr/backup/backuped_files.lst My purpose is to catch the backuped files in backuped_files.lst (screen output without errors) Can you help me? Regards, Renaud