Get Ip Address 만약 ethernet interface가 eth0 인 경우 $ IPADDR=$(ifconfig eth0|grep inet|head -1|sed 's/\:/ /'|awk '{print $2}') $ echo $IPADDR 172.17.0.3 Appendix. References General : http://tl...
eval eval 뒤의 string arg 들을 command 로 실행하게 해줌 string 수준에서 최종 Command 조작 후 실행시 유용하다 usages Appendix. References General : http://tldp.org/LDP/Bash-Beginners-Guide/html/sect_07_01.html
array(list) Bash 에서는 괄호로 Array를 표현가능하다 그 안에서 구분자는 아무래도 띄어쓰기(space bar) 이다 $ cat array_ex.sh #!/bin/bash lists=("a" b "c") echo ${lists[1]} echo ${lists[0]} echo ${lists[3]} echo ${lists[2]} $ sh ...
Bash string comparision using “if” ”==” and “!=” only can be used in case of string comparision. if [ "$STRING" == "abc" ];then echo "STRING is abc!" fi or if [ "$STRING" = "abc" ];then ...
for $ cat for.sh #!/bin/bash LISTS=("a" "b" "c") # Don't forget Brace! echo ${LISTS[0]} echo ${LISTS[1]} echo ${LISTS[2]} # Don't forget Brace! for item in ${LISTS[@]} do echo $item done $...
And $ cat and_or.sh #!/bin/bash test_and_or(){ TEST="11" TEST2="22" if [ "$TEST" == "11" ] && [ "$TEST2" == "22" ] ;then echo "String Exist by And" fi if [ "$...
Directory Exists? $ cat directory_ex.sh #!/bin/bash test_dir_exist(){ set -e if [ -e "/home/jayleekr/workspace/00_codes/05_info_archive" ];then echo "DIR Exist" exit 1 ...
1. 들어가며 본 문서에서는 필자가 Yocto Project의 빌드시스템 기반으로 빌드 및 배포하기 위해 스터디한 부분들 중 중요 개념들을 정리한다. Yocto Project 의 공식홈페이지에 Mega Manual 이라고 써있을 정도로 무지막지한 메뉴얼 양을 자랑하기 때문에 이를 전부 다 깨우치는 것은 필자의 레벨에서는 의미가 크게 없다고 생각하...
1. 구글 검색 활성화 1.1 Activate sitemap Modify _config.yml plugins: ['jekyll-paginate', 'jekyll-sitemap', 'jekyll-include-cache', 'jekyll-gist'] 1.2 Add robots.txt User-agent: * Allow:/ Sitemap: ht...
1. 들어가며 AGL(Automitive Grade Linux)는 유럽, 일본, 한국 등 다양한 차량제조 및 부품회사들이 협력하여 만들고 있는 차량환경에 적합한 Opensource OS(Operating System)입니다.. Toyota의 막강한 Funding 력으로 Linux Foundation의 지휘를 받으며 빠르게 발전하고 있습니다. 참여하...