본문 바로가기
boostcamp-challenge

[7/16] unix bash, shell script로 원하는 data 요리해보기

by blopz 2024. 7. 16.

1. grep, sed, awk

https://bgreat.tistory.com/2

 

유닉스 명령어 grep, sed, awk 사용해보기

리눅스에서 문서형식으로 된 데이터 파일들을 처리하다 보면 문서 편집 기능이 필요할 때가 많다. 일일이 스크립트를 짜서 하기엔 너무 번거로우니 간단하게 한 줄로 처리하고 싶을 때 자주 사

bgreat.tistory.com

 

 

2. YYYYMMDDHHMMSS 형식으로 나타내는 방법

https://unix.stackexchange.com/questions/231953/how-to-get-the-current-date-and-time-in-yyyymmddhhmmss-format-in-ksh88

 

How to get the current date and time in YYYYMMDDHHMMSS format in ksh88?

My requirement is to get difference of 2 timestamps in hours. As the date diff option is taking long for me to figure out I am trying to convert both dates in to YYYYMMDDHHMMSS format and find the

unix.stackexchange.com

 

 

3. Redirection

https://blog.naver.com/ys9922/90025702303

 

리다이렉션(redirection)

  리다이렉션이란, 말 그대로 출력의 방향을 바꾸는 것을 말한다. 예를 들어서 일반 컴퓨터의 표준 출...

blog.naver.com

 

출력의 방향을 바꾸는것

 

<  - 파일에서 입력을 취함

>  - 파일으로 출력을 보냄

>> -  파일으로 붙여넣기함