Re: link

2016-07-22 Thread Dale R. Worley
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

link

2016-07-22 Thread Pascal
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