I would like to find all links that point 'ZZZ' redirected to 'ZZZ1'IeAll links pointing to /dirA/ZZZ/filex etc point to /dirA/ZZZ1/filex etcWhich command can I use to do this? Cheers
[222 byte] By [soopergal] at [2007-11-26 10:45:56]
You could use a shell script that combined 'find' and 'ls', then passed the links through awk to create a new one.You could the same in perl with the File::Find module and the 'readlink' function.-- Darren