방법 1: 쉘 스크립트가 있는 디렉터리(이때 작업 디렉터리라고 함)로 전환하여 쉘 스크립트를 실행
cd /data/shell ./hello.sh
방법 2: 절대 경로로 bash 쉘 스크립트 실행
/data/shell/hello.sh
방법 3: bash 또는 sh를 직접 사용하여 bash 쉘 스크립트
cd /data/shell bash hello.sh
또는
cd /data/shell sh hello.sh
를 실행합니다. 방법 4: 현재 쉘 환경에서 bash 쉘 스크립트
cd /data/shell . hello.sh
또는
cd /data/shell source hello.sh
실행 권장 튜토리얼: centos tutorial
위 내용은 CentOS에서 스크립트를 실행하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!