# return all executable files in the current directory # It matches lines where the first word (non-whitespace) contains at least one 'x'. ls -Fla | grep '^\S*x\S*'
# return all executable files in the current directory # It matches lines where the first word (non-whitespace) contains at least one 'x'. ls -Fla | grep '^\S*x\S*'