Pascal writes:
> how find links and exec command on pointed files ?
>
> $ touch a
> $ ln -s a b
> $ ll
> a
> b -> a
> $ find -H . -type l -exec md5sum '{}' \;
> d41d8cd98f00b204e9800998ecf8427e ./b
>
> md5sum is running on "./b" and not on "./a" like excepted :-(
But that is the behavior expecte
hi,
how find links and exec command on pointed files ?
$ touch a
$ ln -s a b
$ ll
a
b -> a
$ find -H . -type l -exec md5sum '{}' \;
d41d8cd98f00b204e9800998ecf8427e ./b
md5sum is running on "./b" and not on "./a" like excepted :-(
regards