개발/Linux6 [Mac/Linux] cat / date 명령어 - date >> date > 차이점 터미널 갖고놀기! xshell 에서 공부 한 Linux 명령어 Mac 터미널에서 실행해보기 1. cat 명령어로 파일 생성, 내용입력, 출력 $ cat >hello.prac // 현재 폴더에 hello.prac이라는 파일 생성 및 내용 저장 echo helloworld! :q ^C // command+C 로 탈출 $ ls copyfolder1hellohello.prac $ cat hello.prac // 내용 출력 echo helloworld! :q 2. 내용 복사 후 출력 $ cat hello.copy // hello.prac 내용 hello.copy 파일에 복사 $ more hello.prac hello.copy // hello.prac, hello.copy 파일 내용 출력.. 2022. 1. 17. [Mac/Linux] file, directory 생성/삭제/복사/구조확인 터미널 갖고놀기! xshell 로 공부한 Linux 명령어 mac 터미널에서 실행 1. file, directory 생성 / 이동 $ mkdir linuxprac // linuxprac directory 생성 $ cd linuxprac // linuxprac 폴더로 이동 $ touch one two three // 파일 생성 $ ls // 현재 폴더안에 있는 폴더 및 파일 확인 onethreetwo $ tree // tree 구조확인 . ├── one ├── three └── two 2. 파일, 폴더 삭제 $ mkdir folder1 // folder1 폴더생성 $ tree . ├── folder1 ├── one ├── three └── two 1 directory, 3 files // 위에서 touch.. 2022. 1. 17. 이전 1 2 다음