티스토리 뷰
import datetime
import os
from shutil import copyfile, copystat
s = datetime.datetime.now()
dir_name = str(s).replace(' ','_')
os.mkdir(dir_name)
os.chdir(dir_name)
for root, dirs, files in os.walk('/var/log'):
for f in files:
if 'log' in f:
src = root + '/' + f
copyfile(src, './' + f)
copystat(src, './' + f)
리눅스 로그 파일을 자동으로 백업 해주는 코드입니다.
'Programming > Python' 카테고리의 다른 글
[Python] VirusTotal API 사용하기 (2) | 2019.03.27 |
---|
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Basic RCE
- Level 06
- Level 05
- CodeEngn
- c++
- Level 02
- Level 04
- 17th HackingCamp CTF
- 멘토링
- Reversing
- 유니티
- pwnable
- HackingCamp
- unity2d
- wargame
- Programming
- 안드로이드
- Android
- 풀이
- Level 01
- C#
- ftz
- 안드로이드 멘토링
- Unity
- Write-up
- hackerschool
- Level 03
- reversing.kr
- Advance RCE
- xcz.kr
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함