[Linux/Ubuntu]리눅스(WSL) 기초 명령어/단축어편
·
Learning-Log/Computer Science
명령어/단축어 원어 설명 clear clear 콘솔을 깨끗하게 지워준다. ls list 현재 디렉토리에 있는 파일 목록을 보여줌 cd [디렉토리명] change directory [디렉토리명]로 이동함 touch [파일명] touch [파일명]으로 새 파일을 생성 mkdir [디렉토리명] make directory [디렉토리명]으로 새 폴더를 생성한다. code [파일명] run VScode VSCode 프로그램으로 해당 파일을 연다. mv [파일명] move [파일명] 대상을 이동시킨다. mv [파일명] [파일명2] move [파일명] [파일명2] [파일명]을 [파일명2]로 옮긴다(즉 변경한다.) rm [옵션] [파일명] remove [옵션] [파일명] 대상을 삭제한다. rmdir [디렉토리명] rem..