How can I locate all of these files - say all that are in my Home directory? I've tried to find the answer to this question myself, and so far I'm not turning up anything at all useful.
Thanks for any help!
Thanks for any help!
sudo ls -RFl | grep @
sudo ls -RFl | grep @
sudo find / -type l
find ~ -type l
find ~ -type l -ls
Comment