카페검색 본문
카페글 본문
-
텍스트로 표 만들기, 탭 사용, 쪽자, 단락스타일, 문자스타일, 문자스타일, 중첩스타일, GREP스타일, 2023.10.04해당카페글 미리보기
iframe> <iframe width="608" height="342" src="https://www.youtube.com/embed/ADnBm3fnyHE" title="인디자인 GREP스타일" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web...
-
삽질삽질 2024.09.01해당카페글 미리보기
CFBFC4B6 depends: ocfs2_dlm,jbd,ocfs2_nodemanager vermagic: 2.6.18-194.el5xen SMP mod_unload gcc-4.1 # rpm -qa | grep ocfs2 ocfs2-tools-1.4.4-1.el5 ocfs2-2.6.18-194.el5xen-1.4.7-1.el5 ocfs2console-1.4.4-1.el5 ocfs2-tools-devel-1.4.4-1...
-
OPEN FILLREER RAC 구성 ===1 2024.07.05해당카페글 미리보기
3260] successful. [ OK ] [root@rac1 ~]# chkconfig iscsi on [root@rac1 ~]# [root@rac1 ~]# chkconfig --list | grep iscsi iscsi 0:off 1:off 2:on 3:on 4:on 5:on 6:off iscsid 0:off 1:off 2:off 3:on 4:on 5:on 6:off [root@rac1 ~]# XX@XX
-
Re: 오늘의 마지막 문제. SQL 포트폴리오 데이터 중에 하나로 Plotly 로 막대 그래프로 시각화 하시오 ! 2024.07.01해당카페글 미리보기
csv("food_info.csv", header = T, fileEncoding = 'euc-kr') # 데이터 확인 head(food) # 가로 출력 icecream <- food [ grep("^아이스크림", food$식품명), c("식품명")] icecream_counts <- table(icecream) icecream_counts <- length(icecream_counts...
-
리눅스 명령어의 종류... 2024.06.07해당카페글 미리보기
몇 줄 출력. ```sh head -n 10 file ``` - **`tail`**: 파일의 마지막 몇 줄 출력. ```sh tail -n 10 file ``` - **`grep`**: 텍스트 검색. ```sh grep "pattern" file ``` - **`awk`**: 텍스트 패턴 스캔 및 처리. ```sh awk '{print $1}' file...