Re: xargs + rm

Top Page

Reply to this message
Author: Sylvain Pogodalla
Date:  
To: Patrick Dupre
CC: guilde
Subject: Re: xargs + rm
Patrick Dupre writes:
> Mais non cela ne fonctionne pas !
> Typiquement le nom du fichier est:
> C:nppdf32Logdebuglog.txt
>
> Je pense que c'est le ":" qui est un probleme.
> Cela se resout si je peux mettre des " "


Ça a pourtant l'air de fonctionner chez moi :

pogodall@fanon:~/tmp/frames$ touch c\:toto
pogodall@fanon:~/tmp/frames$ ls c\:toto
c:toto
pogodall@fanon:~/tmp/frames$ ls c\:toto | xargs -i rm "{}"
pogodall@fanon:~/tmp/frames$ ls c\:toto
ls: cannot access c:toto: No such file or directory


S.