소스 검색

using the old-style fashion we uses earlier

master
Anselm R. Garbe 17 년 전
부모
커밋
007be12f2b
1개의 변경된 파일8개의 추가작업 그리고 1개의 파일을 삭제
  1. +8
    -1
      dmenu_path

+ 8
- 1
dmenu_path 파일 보기

@@ -1,2 +1,9 @@
#!/bin/sh
/bin/ls -lL `echo $PATH | tr : ' '` 2> /dev/null | awk '$1 ~ /^[^d].*x/ { print $NF }' | sort -u
IFS=:
for dir in $PATH
do
for file in "$dir"/*
do
test -x "$file" && echo "${file##*/}"
done
done | sort -u

불러오는 중...
취소
저장