I am trying to move symbolic links from one folder to another folder:
When I try to move a symbolic link on its own, it works:
mv ./f28 /me/TSR/HR/Dev/TSR_Main_links/
But when I try and loop thru the contents of the folder with a foreach, I get an error:
foreach i ( 'find . -maxdepth 1 -type l' )
mv $i /me/TSR/HR/Dev/TSR_Main_links/
end
This is a follow up question to here.