Se incappate in questo errore ecco alcune soluzioni :
1.
for x in *.trc
do
rm $x
done2.
find . -name '*.txt' -print0 | xargs -0 rm3.
find . -name '*.txt' -exec rm {} \; -print4.
find . -name '*.txt' -delete (presente dalla versione 4.2 di find)
Nessun commento:
Posta un commento