Is there a way in sco 5.0.x to copy just all regular, non-linked files?
I am working on a script for copying stuff over for my clients when they upgrade and this would help me not miss files.
Thanks, I found my answer that way.
To share it with others:
To find real, as in non-linked files use:
find with an option -type f
so to look in current dir and no lower for "real" files:
find . -type f -level 0 -print
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.