I'm looking for a script that read all my files and find those which have int tube[2]
written at the beginning of any line, I should use
sed -e 's/Ancien/Nouveau/g' nomFichierEntrée > nomFichierSortie
But how to loop on my files?
for int i in ls do
sed '^int tube[2]'
loop?
or am I missing something?
And how to use it?
./*
and not*
? Is there any gain in using the first one? – Mohammad Jan 11 '16 at 12:41