Well it all depends on what way you want to go about it?
Will you use the windows script host?
A batchfile?
jbennet
Moderator
18,523 posts since Apr 2005
Reputation Points: 1,826
Solved Threads: 601
oh ok sorry, didnt look at the title properly :)
#!/bin/bash
echo "what info do you want"
read
ls -l $REPLY > /tmp/ls
cat /tmp/ls | awk '{print $1 $9}'
Will show the permissions on each file in the specifified dir. I think you can modify it for your pourpouse.
jbennet
Moderator
18,523 posts since Apr 2005
Reputation Points: 1,826
Solved Threads: 601