본문 바로가기

工夫/Linux27

리눅스 디렉터리 구조 출처 https://realforce111.tistory.com/63 https://coding-factory.tistory.com/499 https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=asd7979&logNo=30116959799 https://danpatpang.github.io/tip/2018/03/18/Tip_ubuntu_command/ https://awesomek.tistory.com/entry/Linux-CentOS-8-%EB%94%94%EB%A0%89%ED%86%A0%EB%A6%AC-%EA%B5%AC%EC%A1%B0 / 디렉토리 내용 /bin 시스템에 사용되는 기본 명령어가 있는 디렉터리.(cp, ls, mv, vi.. 2021. 10. 2.
date 로 unix Timestamp 및 날짜 변환 unix timestamp 를 날짜 변환 date -d @unix시간[root@test001 network-scripts]# date -d @1460014849Thu Apr 7 16:40:49 KST 2016[root@test001 network-scripts]# date -d @1260014849 Sat Dec 5 21:07:29 KST 2009 현재 시간을 unix timestamp 로 변환[root@test001 network-scripts]# date -d "Fri Apr 8 09:09:44 KST 2016" "+%s"1460074184 [root@test001 network-scripts]# date +%s1460074273 2016. 4. 8.
생성된 core 파일 확인 file 명령어로 core 파일을 만든 것을 알수 있다.from 뒤의 내용을 보면 core 파일을 만든 프로세스가 적혀져 있다. 2014. 7. 5.
find find [경로] [옵션] [작업]find [path] [optin] [commend] -name name : 붉은색 이름의 파일을 찾는다. -user name : user 소유의 파일을 찾는다.-type [bcdfs] : 지정된 형식의 파일을 찾는다.b : 블럭 , c : 문자 , d : 디렉토리 , f : 파일 , i : 링크 , s : 소켓 - print : 표준출력으로 검색된 파일명을 출력한다. 예)find ./ -maxdepth 1 -tpye f -print(찾는다, 현재디렉토리에서, 현재디렉토리에서 1단계아래디렉토리까지, 타입은 파일, 표준출력으로 검색된 파일을)find $fdir -mindepth 1 -maxdepth 1 -type d -print (찾는다, 변수로 설정된 경로, 변수 경로에.. 2014. 7. 5.