gawk -vFPAT='[^,]*|"[^"]*"' '{print $1 "," $3}'
출처: https://stackoverflow.com/questions/4205431/parse-a-csv-using-awk-and-ignoring-commas-inside-a-field
'프로그래밍 언어 > Shell script' 카테고리의 다른 글
Linux에서 Nanosecond(나노초) 단위까지 시간 출력하기 (0) | 2017.10.17 |
---|
gawk -vFPAT='[^,]*|"[^"]*"' '{print $1 "," $3}'
출처: https://stackoverflow.com/questions/4205431/parse-a-csv-using-awk-and-ignoring-commas-inside-a-field
Linux에서 Nanosecond(나노초) 단위까지 시간 출력하기 (0) | 2017.10.17 |
---|
date +"%Y-%m-%d %H:%M:%S.%N"
1 2 | [user@vm ~]$ date +"%Y-%m-%d %H:%M:%S.%N" 2017-10-17 20:47:09.783257914 | cs |
%Y: 연
%m: 월
%d: 일
%H: 시
%M: 분
%S: 초
%N: 나노초
Linux command to get time in milliseconds, https://stackoverflow.com/questions/16548528/linux-command-to-get-time-in-milliseconds
How To Format Date For Display or Use In a Shell Script, https://www.cyberciti.biz/faq/linux-unix-formatting-dates-for-display/
gawk로 csv format 텍스트를 split 하기 (0) | 2018.07.15 |
---|