> >is it possible in macperl to save a basic script as a droplet and when i
> >drag a txt-file over the droplet the file will be read as input,
> >somthing like this (were the droplet itself should detect the file input)
> >
> >open (FILE, <STDIN>) or die $!;
> >while (<FILE>) {
> >       s/a/abc/g;
> >       print;
> >}
> 
> Er... isn't this just dead easy?
> 
>         while(<>) {
>             print;
>         }


perfect!
thanks (also to the other solutions)
allan

Reply via email to