Two examples, one mine, one a colleague of mine, from long ago when I had far less wisdom.
My refusal to succumb to the evils of using GUI configuration tools while administering UNIX boxes. I decided that, to add a user, I need only execute:
echo 'bob::1000:1000:Bob Somebody,,,:/home/bob:/bin/ksh' >/etc/passwd
then I logged out and found, to my disgust, I couldn't log back in as root (or any other user but bob, who had no power whatsoever). Guess I should have examined the redirection character(s) a little more closely.
My colleague was better: in our HP-UX application install script, which runs as root in the root directory, he had coded the following:
cd /opt/aplication
chown -R our_user:our_group .
chmod -R 700 .
which set all our files to have a specific owner, group and permission. At least it would have if our application wasn't in /opt/apllicationopt/application. Needless to say, the system was unworkable after having every single file in the filesystem (including the commands needed to fix it) changing ownership and permissions.
Live and learn.
