일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- bash
- port
- find
- ssh
- Windows 10
- grep
- resource
- 네트워크
- Source
- Quartz
- web.xml
- context
- tomcat
- vscode
- JavaScript
- netsh
- lsof
- profile
- 단축키
- VirtualBox
- 줄바꿈 문자
- plugin
- IntelliJ
- import
- Mac
- Windows
- maVen
- Eclipse
- xargs
- GIT
- Today
- Total
목록분류 전체보기 (1786)
develog
Access Time | atime | -ultThis is the time that the file was last accessed, read or written to. Modify Time | mtime | -ltThis is the last time the actual contents of the file were last modified. Change Time | ctime | -clThis is the time that the inode information (permissions, name, etc., the metadata, as it were) was last modified.
[dev@dev02 logs]$ stat aa.txt File: `aa.txt' Size: 0 Blocks: 8 IO Block: 4096 일반 빈 파일Device: 809h/2057d Inode: 5570591 Links: 1Access: (0664/-rw-rw-r--) Uid: ( 500/ dev) Gid: ( 500/ dev)Access: 2013-04-06 00:00:00.000000000 +0900Modify: 2013-04-06 00:00:00.000000000 +0900Change: 2013-06-21 17:30:58.000000000 +0900
alias ls='ls --time-style=long-iso' dev@dev02 logs]$ alias ls='ls --time-style=long-iso'[dev@dev02 logs]$ ll합계 52-rw-rw-r-- 1 dev dev 0 2013-04-06 00:00 aa.txt-rw-rw-r-- 1 dev dev 0 2012-04-12 15:38 bb.txt-rw-rw-r-- 1 dev dev 6450 2013-06-19 13:43 catalina.2013-06-19.log-rw-rw-r-- 1 dev dev 13397 2013-06-20 15:20 catalina.2013-06-20.log-rw-rw-r-- 1 dev dev 3230 2013-06-21 10:13 catalina.2013-06-..
touch -t 월일시분touch -t MMDDHHMI [dev@dev02 logs]$ ll aa.txt -rw-rw-r-- 1 dev dev 0 6월 21 17:20 aa.txt[dev@dev02 logs]$ touch -t 05201529 aa.txt [dev@dev02 logs]$ ll aa.txt -rw-rw-r-- 1 dev dev 0 5월 20 15:29 aa.txt
URL url = TestMain.class.getResource("TestMain.class");String currDir = url.getPath();File file = new File(currDir); System.out.println(url );System.out.println(currDir);System.out.println(file.getCanonicalPath());