매뉴얼 페이지를 열고 단일 명령 내에서 문자열을 검색하십시오.

매뉴얼 페이지를 열고 단일 명령 내에서 문자열을 검색하십시오.

man chmodvi /a+x(m) 에서 수행되는 것과 유사하게 chmod 매뉴얼 페이지에 언급된 첫 번째 부분으로 이동하지 않고 특정 검색 문자열에 대한 매뉴얼 페이지를 열 수 있는 방법이 있는지 궁금합니다 .a+xvi +string filename.txt

답변1

다음 방법을 시도해 보세요.

man chmod | less +'/a\+x'

또는

man chmod | more +'/a\+x'

기호 뒤에 백슬래시가 있으므로 +기호 앞에 백슬래시가 있습니다./확장 정규식.

답변2

내가 아는 한은 아니지만(하지만 @sputnick가리키다잘 모르지만) 구문 분석할 수 있습니다.

man chmod | grep -C 5 'a+x'

맨 페이지에 실제로 존재하는 문자열을 사용하는 것이 좋습니다. 예를 들면 다음과 같습니다.

$ man chmod | grep -C 5 set-user-ID
   traversals.

SETUID AND SETGID BITS
   chmod  clears  the  set-group-ID  bit  of a regular file if the file's group ID does not match the
   user's effective group ID or one of the user's supplementary group IDs, unless the user has appro‐
   priate  privileges.   Additional  restrictions  may cause the set-user-ID and set-group-ID bits of
   MODE or RFILE to be ignored.  This behavior depends on the policy and functionality of the  under‐
   lying chmod system call.  When in doubt, check the underlying system behavior.

   chmod preserves a directory's set-user-ID and set-group-ID bits unless you explicitly specify oth‐
   erwise.  You can set or clear the bits with symbolic modes like u+s and g-s, and you can set  (but
   not clear) the bits with a numeric mode.

RESTRICTED DELETION FLAG OR STICKY BIT
   The  restricted  deletion  flag or sticky bit is a single bit, whose interpretation depends on the

답변3

less이를 호출기(최신 시스템의 기본값) 로 사용한다고 가정하고 환경 변수에 검색 지시어를 추가하세요 LESS. 이것은 명령줄 옵션 목록입니다 less. /검색과 같이 실행할 less 명령을 명령 앞에 붙여서 전달할 수 있습니다 +(vi와 마찬가지로).

LESS="$LESS +/a\+x" man chmod

이것의 장점은 man chmod | less "+/a\+x"서식이 손실되지 않는다는 것입니다.

당신은 또한 볼 수 있습니다zsh용 zmv: 준비 및 매뉴얼 페이지

관련 정보