Results 1 to 6 of 6
is there a way to use the find command to display only executable files?...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 02-11-2010 #1Just Joined!
- Join Date
- Feb 2010
- Posts
- 5
question about find.
is there a way to use the find command to display only executable files?
- 02-11-2010 #2forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,733
You can go to a terminal and check the manual page to see the options for using find:
Code:man find
oz
- 02-11-2010 #3Just Joined!
- Join Date
- Feb 2010
- Posts
- 5
im not finding anything usefull to what im intrested in in the Manual;
so leme just rephrase the question;
is there a way to list just the executables? via any command?
- 02-11-2010 #4
how about this for a starter (its in the man pages i swear
)
so here is a starter piece, good luckCode:man find
Code:find -type f -perm +x
linux user # 503963
- 02-18-2010 #5Just Joined!
- Join Date
- Jan 2010
- Posts
- 1
find is used to search the files in that directory if u want to find any file locate is very useful in this case
- 02-18-2010 #6
the question was finding executable files, locate would not be helpful for that
linux user # 503963


Reply With Quote
