chmod --reference existingfolder newfolder
Category: Uncategorized
Categories
Convert upper case to lowercase
cat filename | tr '[:uper:]' '[:lower:]' > newfilename
or
cat filename | tr [:uper:] [:lower:] > newfilename
Categories
Replace ^M
Using Emacs
Esc-x, replace-string Ctrl-q, Ctrl-M, Enter, Enter
Using the terminal
sed -e “s/^M//” filename > newfilename
Categories
Solaris, check HD for errors
hd -r # This will scan all HDs and give a summary