프로그래밍/Linux
-
shell script 작성법 - if문 사용법 (기본 사용법)프로그래밍/Linux 2018. 11. 12. 11:02
기본 사용법 if [ 조건식 ]; then // if문 시작 ~elif ~else ~fi 또는 if [ 조건식 ]then // if문 시작 ~elif ~else ~fi // if문 종료 if 와 [ 사이는 반드시 한 칸을 띄어써야 한다. 조건식에 들어가는 조건은 &&(and) 나 ||(or) 로 연결하여 사용 가능하다 다양한 조건을 연결하여 사용하는 예시 if [ $is_sorted_file -eq 0 ] && [ $today_cnt -gt 0 ] && [ $today_cnt_sorted -eq 0 ]; then echo "there is new today news:"$entry elif [ $is_sorted_file -gt 0 ]; then echo "this file is sorted file:"$..
-
리눅스(Ubuntu) 하드 디스크 추가하고 mount하기프로그래밍/Linux 2018. 8. 7. 20:14
수집되고 있는 데이터들이 많아져서 1TB 디스크 두 개를 추가하였습니다. fdisk -l 로 추가된 디스크를 확인합니다. # fdisk -l ... ...Disk /dev/sdd: 2048.4 GB, 2048408248320 bytes255 heads, 63 sectors/track, 249038 cylinders, total 4000797360 sectorsUnits = sectors of 1 * 512 = 512 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk identifier: 0x00000000 Disk /dev/sdd doesn't contai..