← Back to team overview

sslug-teknik team mailing list archive

Re: Automatisk installation af filer

 

Jon Svejgaard <jon@xxxxxx> writes:

> cat listefil | while read fil
> do
> 	[ -f "$fil" ] || wget...
> ...
>
> done

eller:

while read fil ; do
    ...
done < listefil

Hvis man helst ikke vil misbruge cat-komandoen

-- 
 Peter Makholm     |     Have you ever felt trapped inside a Klein bottle?
 peter@xxxxxxxxxxx |                                                      
 http://hacking.dk |                                                      


References