Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 개발노트
- Baekjoon
- jetbrains
- RaspberryPi
- ruby
- react
- gnuplot
- kotlin
- Godot
- ruby2d
- error
- OAuth
- boj
- JS
- Android
- 루비
- CPP
- Shell
- Java
- maven
- rubymine
- Spring
- plugin
- Python
- IntelliJ
- C
- gradle
- Vane
- OTLanguage
- GitHub
Archives
- Today
- Total
PersesTitan(페르) 기술블로그
[Shell] 리눅스/맥 명령어 (pwd, cd, ls, mkdir, rmdir) 본문
pwd
현재 경로 출력하기
ls
현재 위치에 존재하는 파일, 디렉토리들을 출력하기
# 숨겨진 파일까지 전부 출력
ls -a
# 파일의 상세정보를 출력
ls -l
cd
디렉토리 이동
cd <이동할 경로>
mkdir
폴더 생성
mkdir <생성할 디렉토리명>
rmdir
폴더 제거
rmdir <제거할 디렉토리명>
'Language > Shell' 카테고리의 다른 글
[Shell] 리눅스/맥 명령어 (banner, date, clear, man) (0) | 2023.04.16 |
---|---|
[Shell] 출력에 색상 넣기 (0) | 2023.04.12 |
[Shell] case문 사용하기 (Java switch-case문 비교) (0) | 2023.03.09 |