[Linux] Bash Shell에 인자 전달하여 실행
처음 보는 서버의 conf 파일을 수정 후 누가봐도 서버 실행 스크립트가 있길래 자바 에이전트를 실행하고 로그를 보니 $ ./server-start.sh nohup: appending output to `nohup.out' $ tail -f nohup.out Useing : help, start, stop help 느낌이 인자값을 디폴트로 help로 받은 모양인데? 쉘 스크립트를 까보니 $@와 $1이 딱 보인다. $ cat server-start.sh #! /bin/sh #JAVA_HOME=/home/maxion/app/jdk1.6.0_17 JAVA_HOME=/usr/lib/jvm/jre-1.8.0-openjdk.x86_64 EXEC_HOME=/home/ec2-user/WhatIsAServer/daemo..
Linux
2022. 3. 4. 18:07