develog

[bash] find tomcat & exec 본문

OS & Shell/Linux

[bash] find tomcat & exec

냐옴 2017. 11. 23. 11:40

방법1

 find /home/dev/tomcat*/ -type f -name 'catalina.sh' -exec bash -c 'echo; {} start' \;

 find /home/dev/tomcat*/ -type f -name 'catalina.sh' -exec bash -c 'echo; {} stop' \; 


방법2

 # find tomcat

 find /home/dev/tomcat*/ -type f -name 'catalina.sh'


 # run tomcat

 list=(/home/dev/tomcat1/bin/catalina.sh /home/dev/tomcat2/bin/catalina.sh)

 for i in ${list[*]}; do bash $i stop; done


command line 에서 바로 실행


'OS & Shell > Linux' 카테고리의 다른 글

[Linux] 파일 수정일자로 삭제  (0) 2018.03.07
[Linux] 파일 날짜 변경, touch  (0) 2018.03.07
[Linux] 명령어 같이 실행  (0) 2017.11.23
[Linux] 시스템 정보 확인  (0) 2017.10.18
[Linux] rename, 파일명 일괄 변경  (0) 2017.07.25
Comments