본문 바로가기

전체239

simple grep 사용법 grep (Globally Find Regular - Expression and print ) grep 은 리눅스 또는 유닉스 환경에서 무엇이든 검색 할 수 있는 명령어 입니다.어떤 소스를 분석 할때 함수가 어디서 콜 되었고, 변수가 어디서 사용 되었는지 등을 검색 할때 유용하게 쓰입니다.함수나 변수외에도 텍스트까지도 모두 검색 되므로, 출력 메시지를 검색해 그 메시지를 발생시킨 함수를 역추적 하기도 좋습니다. 1. 사용 형식 grep [] 문자열 [대상파일] 2. 옵션-i : 영문의 대소문자를 구별하지 않는다.-v : pattern을 포함하지 않는 라인을 출력한다.-n : 검색 결과의 각 행의 선두에 행 번호를 넣는다(first line is 1).-l : 파일명만 출력한다.-c : 패턴과 일치하는 라.. 2017. 5. 22.
tar gz 리스트 보기 tar -tf filename.tar.gz or SyntaxTo view a detailed table of contents for archive called my-data.tar.gz, use the following syntax: tar -ztvf my-data.tar.gz tar -tvf my-data.tar.gz tar -tvf my-data.tar.gz 'search-patter'ExamplesLet us see some examples:Task: List the contents of a tar fileUse the following command: $ tar -tvf file.tar Sample outputs: Task: List the contents of a tar.gz fileUse th.. 2017. 5. 22.
spark transformation 설명-예제 모음 https://www.supergloo.com/fieldnotes/apache-spark-examples-of-transformations/ 조음 MAP(FUNC)What does it do? Pass each element of the RDD through the supplied function; i.e. funcSpark map function example1234 scala> val rows = babyNames.map(line => line.split(","))rows: org.apache.spark.rdd.RDD[Array[String]] = MappedRDD[360] at map at :14 What did this example do? Iterates over every line in the.. 2017. 4. 21.
편리한 Junit 사용 moreunit 'eclipse market place' -> moreunit 설치 단축키)ctrl + j : 코드간 이동 및 생성ctrl + r : 테스트 실행 2017. 4. 20.