일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Default 삭제
- 장치에 남은 공간이 없음
- histoy옵션
- Default vpc
- 버프슈트
- aws 자격증 접수 오류
- AWS 시험후기
- 모바엑스텀 설치
- rm -f
- uptime -V
- Default 생성
- 버프스위트
- pam_tally -u
- 패키지 출력
- HISTTIMEFORMAT
- ln -Tfs
- Unable to create a new virtual machine: No permission to perform this operation.
- root로그인안됨
- AWS
- uptime -p
- burpsuite
- pam_tally -u -r
- 리눅스 telnet
- CentOS-Base.repo
- Burp Suite
- 프리티어 비용 발생
- i-node full
- uptime -s
- svn: Can't find a temporary directory: Internal error
- pam_tally2.so
Archives
- Yesterday
- Today
- Total
리눅스 디렉터리 / 파일 생성(mkdir, touch, cat) 본문
728x90
반응형
디렉터리 / 파일 생성
# mkdir
- 디렉터리를 생성할 때 사용하는 명령어입니다.
# mkdir dir # ls -ld dir drwxr-xr-x. 2 root root 4096 2016-12-01 13:52 dir |
# touch
- 빈 파일을 생성하거나 최종 수정시간을 변경할 때 사용하는 명령어입니다.
# touch aaa # ls -ld aaa -rw-r--r--. 1 root root 0 2016-12-01 14:02 aaa # touch aaa # ls -ld aaa -rw-r--r--. 1 root root 0 2016-12-01 14:03 aaa |
# cat > 파일명
- 파일을 생성하면서 데이터를 입력할 때 사용하는 명령어입니다.
# cat > data1 one two three four five ctrl + c (종료하는 단축키) # cat data1 one two three four five # ls -ld data1 -rw-r--r--. 1 root root 24 2016-12-01 14:07 data1 |
* 간단한 파일을 만들 때는 이방법도 나름 괜찮습니다.
728x90
반응형
'리눅스 > Linux 공부내용' 카테고리의 다른 글
리눅스 디렉터리 / 파일 복사(cp) (0) | 2016.12.06 |
---|---|
리눅스 디렉터리/파일 이동 및 이름 바꾸기(mv) (0) | 2016.12.06 |
리눅스 파일 관련 명령어(cat, more, head, tail) (0) | 2016.12.02 |
리눅스 디렉터리 관련 명령어(pwd, ls, cd) (0) | 2016.12.02 |
리눅스 기본 개념 (0) | 2016.11.29 |
Comments