SupprimerFichiers

 Voici une commande qui permet de supprimer des fichiers après les avoir archivés avec la commande tar :

 $ tar -cvf toto.tgz toto.txt titi.txt
 $ tar -tf toto.tgz | xargs -d'\n' rm -v 
 removed 'toto.txt'
 removed 'titi.txt'