Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- IntelliJ
- find
- Windows 10
- GIT
- Mac
- 네트워크
- vscode
- resource
- plugin
- tomcat
- Quartz
- VirtualBox
- context
- Windows
- xargs
- 줄바꿈 문자
- JavaScript
- maVen
- netsh
- import
- grep
- profile
- ssh
- Eclipse
- port
- lsof
- web.xml
- Source
- 단축키
- bash
Archives
- Today
- Total
develog
[bash] date format 본문
## 나노초 9 자리
$ date '+%Y-%m-%d %H:%M:%S.%N'
2024-05-31 15:30:32.587635288
## 나노초 6 자리
$ date '+%Y-%m-%d %H:%M:%S.%6N'
2024-05-31 15:30:34.777216
## 나노초 3 자리
$ date '+%Y-%m-%d %H:%M:%S.%3N'
2024-05-31 15:30:39.690
Comments