Humane chmod
The first program I code that I was proud of was a shell replacement/complement for chmod command in unix.
I think (no, I'm sure, It must have) been written in sh.
We were learning C in second semester and we all were troubled with the new environment: UNIX (until that day I though DOS and Operating System were interchangeably words OMG). I must have been 19 years old.
It was quite challenging to edit code and make it work there.
After several frustrating minutes one manages to edit and compile hello world:
$ vi hello.c
~ #include<stdio.h>
~
~ void main()
~ {
~
~ printf("Hello\n");
~
~ }
~
:wq
$ cc hello.c
$ a.out
$ Hello
Uff quite an accomplishment!! Formating was a bonus!!
Well next thing you wanted to make your "golden" hello.c read only for you don't want to screw it by mistake and then make it editable again, you were faced to deal with....
chmod!!!
$ chmod 777 Hello.c ( or was it 755? 153 rwx??? aaarg!!! )
Everyone hate it!!!
So I came up with something that would accept the file permissions as parameter like this
chmod rwxr--r-- Hello.c
And then
chmod --------- Hello.c
Or
chmod r-xr-x-r-- Hello.c
Whatever you wanted! ( well almost , later I learn there was some other file permission ) ) But the point was that you write it exactly the way you see it in ls -l. Plus if it couldn't handle the input it forwarded to /bin/chmod :P
Micro celebrity!!, the script was very popular in my class and was distributed all over the place.
A few weeks later someone discover "man" and not only discover it but really put attention to it and discovered that
chmod u+w Hello.c
and
chmod u-w Hello.c
did the job already, and that was the end of my script.
Well. Then I really got hooked into programming and a new world opened in front my eyes!!!