Source 명령을 사용하는 대신 bash 스크립트를 호출하는 간단한 방법

Source 명령을 사용하는 대신 bash 스크립트를 호출하는 간단한 방법

내 스크립트는 쉘 변수를 사용하고 수정합니다. 항상 다음을 사용해야 합니다.

source myscript

이 스크립트를 호출하고 현재 쉘 환경을 수정하는 더 짧은 방법이 있습니까?

이 작업은 다음에 설명된 함수를 사용하여 우아하게 수행할 수 있습니다.이 답변, 하지만 더 빠른 방법이 필요합니다.

답변1

사용할 수 .있는 약어입니다 source. bash(1)매뉴얼 페이지 에서 :

.  filename [arguments]
source filename [arguments]

Read and execute commands from filename in the current shell environment and return
the exit status of the last command executed from filename.

관련 정보