[sean@sergeant tmp]$ touch foo
[sean@sergeant tmp]$ ls -l foo
-rw-r--r-- 1 sean users 0 Oct 28 18:54 foo
[sean@sergeant tmp]$ perl -e 'chmod 777, foo'
[sean@sergeant tmp]$ ls -l foo
-r----x--t 1 sean users 0 Oct 28 18:54 foo
[sean@sergeant tmp]$ perl -e 'chmod 0777, foo'
[sean@sergeant tmp]$ ls -l foo
-rwxrwxrwx 1 sean users 0 Oct 28 18:54 foo
Sean