Dec 27, 2003 #1 owenbrown MIS May 22, 2003 32 US How can I do and ls -al of only executables files(755,777)?
Dec 28, 2003 1 #2 mrregan MIS Nov 2, 1999 490 US you could grep for the permissions pattern, for example: ls -al | grep rwxrwxrwx to list all the 777 permissions Upvote 0 Downvote
you could grep for the permissions pattern, for example: ls -al | grep rwxrwxrwx to list all the 777 permissions
Dec 28, 2003 2 #3 PHV MIS Nov 8, 2002 53,708 FR You can try something like this: Code: find /path/to/dir -type f -perm -111 Hope This Help PH. Upvote 0 Downvote