for 문을 이용한 shell script
Programming/Linux |
2012. 12. 18. 17:43
#!/bin/sh
menu_id='
men_log
mal_url'
for printMenuid in $menu_id
do
/home/php/bin/php men_fil_exe.php $printMenuid
done
===========================================================
내 생에 첫 shell script!!! 실행시키기 위해선
해당 위치에 파일이 있다면 : sh 파일이름.sh ex) sh menfilm.sh
절대경로를 사용하고 싶다면 :./파일이름.sh ex)./menfilm.sh
php명령어가 다른곳에 있어서 좀 헤멨습니다.
menu id가 테이블의 컬럼이라 데이터가 500개 정도 되서 이런식으로 만들게 됬네요 ㅎ
printMenuid 는 menu_id를 하나씩 받는 변수랍니다. ㅎㅎ