현재 폴더가 위치한 경로 확인
pwd
home 위치
파일 탐색기에서 \\wsl$ 검색
mkdir helloWorld
touch hi.txt
ls-a
: 숨어있는 폴더나 파일을 포함한 모든 항목 출력ls-l
: 폴더나 파일의 포맷을 전부 표현cd helloWorld
cat hi.txt
rm hi.txt
: hi.txt 파일 삭제rm -rf helloWorld
: helloWorld 폴더 삭제mv hi.txt bye
: helloWorld 폴더 안의 hi.txt를 bye 폴더로 이동mv hi.txt hello.txt
: hi.txt의 이름을 hello.txt로 변경cp helloWorld.txt hiComputer.txt
: helloWorld.txt 파일을 hiComputer 이름으로 복사/home/[userName]/helloWorld/hello
.
: 현재 위치 폴더..
: 상위 폴더./hi
: 현재 폴더 내부에 있는 hi 폴더sudo mkdir sudoMkdir
: 폴더의 소유자가 root가 됨 ( password는 안 나오는 게 정상 )