파일 생성 및 복사touch touch는 파일의 날짜시간정보를 변경하는 명령어이다. 즉, 아무런 옵션 없이 사용되면 서버의 현재시간으로 파일의 최근에 사용한 시간과 최근에 변경된 시간을 변경한다. 만약 지정된 명령어가 존재하지 않는다면 파일의 크기가 0인 파일을 생성한다. -t 옵션을 사용하면 서버의 현재시간이 아닌 지정된 파일의 날짜시간정보를 변경한다. -t 옵션을 사용하면 특정 파일의 날짜시간정보를 지정한 것으로 변경한다.mkdir mkdir은 "MaKe DIRectory"의 약어로서 새로운 디렉토리를 만들 때 사용되는 명령어이다. 간단히 "mkdir 디렉토리명"으로 간단하게 필요한 새로운 디렉토리를 생성할 수 있다. 만약 상위 디렉토리 경로를 포함하는 디렉토리를 생성할 때에는 -p 옵션을 사용한다...
http://overthewire.org/wargames/bandit/bandit9.html Bandit Level 8 → Level 9Level GoalThe password for the next level is stored in the file data.txt and is the only line of text that occurs only onceCommands you may need to solve this levelgrep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxdHelpful Reading MaterialThe unix commandline: pipes and redirectsLevel 8에서 Level 9로 가기 위해서 data.tx..