답변:
이것은 대답이 아니지만 실행할 수있는 명령 인 바이너리를 보여줍니다.
compgen -c
(가정 bash
)
다른 유용한 명령
compgen -a # will list all the aliases you could run.
compgen -b # will list all the built-ins you could run.
compgen -k # will list all the keywords you could run.
compgen -A function # will list all the functions you could run.
compgen -A function -abck # will list all the above in one go.
in
, {
...) 및 별칭 도 포함되어 있습니다.
POSIX 셸 에서 최종 정렬을 제외하고 외부 명령을 사용하지 않고 (로 printf
돌아 오지 않으면 내장되어 있다고 가정 echo
) 실행 파일 이름에 개행 문자가 없다고 가정합니다.
{ set -f; IFS=:; for d in $PATH; do set +f; [ -n "$d" ] || d=.; for f in "$d"/.[!.]* "$d"/..?* "$d"/*; do [ -f "$f" ] && [ -x "$f" ] && printf '%s\n' "${x##*/}"; done; done; } | sort
빈 구성 요소가없고 $PATH
( .
대신 사용)으로 시작하는 구성 요소 나 PATH 구성 요소 또는 실행 파일 이름에 -
와일드 카드 문자 \[?*
가없고으로 시작하는 실행 파일이없는 경우 다음과 같이 .
단순화 할 수 있습니다.
{ IFS=:; for d in $PATH; do for f in $d/*; do [ -f $f ] && [ -x $f ] && echo ${x##*/}; done; done; } | sort
POSIX find
및 sed
:
{ IFS=:; set -f; find -H $PATH -prune -type f -perm -100 -print; } | sed 's!.*/!!' | sort
경로에 희귀 비 실행 파일 또는 비정규 파일을 나열하려는 경우 훨씬 간단한 방법이 있습니다.
{ IFS=:; ls -H $PATH; } | sort
이것은 도트 파일을 건너 뜁니다. 필요한 경우 -A
플래그가 ls
있거나 POSIX를 고수하려는 경우 플래그를 추가하십시오 .ls -aH $PATH | grep -Fxv -e . -e ..
$PATH
설정되어 있고 빈 구성 요소가 포함되어 있지 않으며 구성 요소가 find 술어 (또는 ls 옵션)처럼 보이지 않는다고 가정합니다 . 이들 중 일부는 도트 파일도 무시합니다.
yash
및 제외 zsh
).
find
것에서. -prune
디렉토리를 나열하지 못하게합니다. 심볼릭 링크를 포함 하려는 -L
대신 -H
실행 파일에 공통적으로 사용하는 것이 좋습니다. -perm -100
파일을 사용자가 실행할 수 있음을 보증하지 않으며 실행 파일을 제외시킬 수도 있습니다.
나는 이것을 생각해 냈다.
IFS=':';for i in $PATH; do test -d "$i" && find "$i" -maxdepth 1 -executable -type f -exec basename {} \;; done
편집 : 이것은 아파치 사용자가 bin 디렉토리의 일부 파일을 읽는 동안 SELinux 경고를 트리거하지 않는 유일한 명령 인 것 같습니다.
for
? IFS=:; find $PATH -maxdepth 1 -executable -type f -printf '%f\n'
$PATH
설정되어 있고 와일드 카드 문자를 포함하지 않으며 빈 구성 요소를 포함하지 않는 것으로 가정합니다 . 또한의 GNU 구현을 가정합니다 find
.
-type f
대신 (GNU의 특정) -xtype f
, 그 것 또한 생략 심볼릭 링크. 또한 $PATH
심볼릭 링크 인 구성 요소 의 내용이 나열되지 않습니다 .
이건 어때요
find ${PATH//:/ } -maxdepth 1 -executable
문자열 대체는 Bash와 함께 사용됩니다.
$PATH
, 설정되어 있고 와일드 카드 나 공백 문자가없고 빈 구성 요소가 없다고 가정합니다. 그것은 GNU 찾기도 가정합니다. 참고 ${var//x/y}
인 ksh
구문 (또한 zsh을 배시 지원). 엄밀히 말하면 $ PATH 구성 요소도 find
술어 가 아니라고 가정 합니다.
$PATH
컴포넌트가 심볼릭 링크가 아니라고 가정합니다 .
IFS=:
이 대체를 수행하는 것보다 설정 이 더 강력합니다. 공백이있는 경로는 Windows에서 일반적이지 않습니다. 심볼릭 링크는 상당히 일반적이지만이 방법으로 쉽게 해결할 수 있습니다 -H
.
쉘에서 파이썬을 실행할 수 있다면 다음과 같은 (리우스하게 긴) 한 줄짜리 라이너도 사용할 수 있습니다.
python -c 'import os;import sys;output = lambda(x) : sys.stdout.write(x + "\n"); paths = os.environ["PATH"].split(":") ; listdir = lambda(p) : os.listdir(p) if os.path.isdir(p) else [ ] ; isfile = lambda(x) : True if os.path.isfile(os.path.join(x[0],x[1])) else False ; isexe = lambda(x) : True if os.access(os.path.join(x[0],x[1]), os.X_OK) else False ; map(output,[ os.path.join(p,f) for p in paths for f in listdir(p) if isfile((p,f)) and isexe((p,f)) ])'
이것은 'exec'함수를 사용하지 않고 한 줄의 파이썬 코드를 사용하여 수행 할 수 있는지 여부를 알기위한 재미있는 연습이었습니다. 좀 더 읽기 쉬운 형태로, 주석은 다음과 같습니다.
import os
import sys
# This is just to have a function to output something on the screen.
# I'm using python 2.7 in which 'print' is not a function and cannot
# be used in the 'map' function.
output = lambda(x) : sys.stdout.write(x + "\n")
# Get a list of the components in the PATH environment variable. Will
# abort the program is PATH doesn't exist
paths = os.environ["PATH"].split(":")
# os.listdir raises an error is something is not a path so I'm creating
# a small function that only executes it if 'p' is a directory
listdir = lambda(p) : os.listdir(p) if os.path.isdir(p) else [ ]
# Checks if the path specified by x[0] and x[1] is a file
isfile = lambda(x) : True if os.path.isfile(os.path.join(x[0],x[1])) else False
# Checks if the path specified by x[0] and x[1] has the executable flag set
isexe = lambda(x) : True if os.access(os.path.join(x[0],x[1]), os.X_OK) else False
# Here, I'm using a list comprehension to build a list of all executable files
# in the PATH, and abusing the map function to write every name in the resulting
# list to the screen.
map(output, [ os.path.join(p,f) for p in paths for f in listdir(p) if isfile((p,f)) and isexe((p,f)) ])
#!/usr/bin/env python
import os
from os.path import expanduser, isdir, join, pathsep
def list_executables():
paths = os.environ["PATH"].split(pathsep)
executables = []
for path in filter(isdir, paths):
for file_ in os.listdir(path):
if os.access(join(path, file_), os.X_OK):
executables.append(file_)
return executables