다음과 같이 실행되는 명령이 있습니다.
./command shortened_path_to_current_directory
의 출력은 pwd
다음과 같습니다
/path/to/current/directory
그리고 shortened_path_to_current_directory
는:
/current/directory
따라서 경로의 처음 2개 디렉터리를 삭제합니다.
다음과 같은 명령을 실행하는 방법입니다.
./command shorten($PWD)
어디에서 shorten
항목을 삭제할 수 있나요 /path/to
?
답변1
사용매개변수 확장:
$ echo "/${PWD#*[a-z]*/[a-z]*/}"
/current/directory
바라보다:http://mywiki.wooledge.org/BashFAQ/073그리고 man bash의 "매개변수 확장".
또한보십시오http://wiki.bash-hackers.org/syntax/pe