터미널 갖고놀기!
xshell 에서 공부 한 Linux 명령어 Mac 터미널에서 실행해보기
1. cat 명령어로 파일 생성, 내용입력, 출력
$ cat >hello.prac // 현재 폴더에 hello.prac이라는 파일 생성 및 내용 저장
echo helloworld!
:q
^C // command+C 로 탈출
$ ls
copy folder1 hello hello.prac
$ cat hello.prac // 내용 출력
echo helloworld!
:q
2. 내용 복사 후 출력
$ cat < hello.prac > hello.copy // hello.prac 내용 hello.copy 파일에 복사
$ more hello.prac hello.copy // hello.prac, hello.copy 파일 내용 출력
echo helloworld!
:q
...skipping...
echo helloworld!
:q
3. date 명령어로 현재 시간 출력.
- date >> 와 date > 의 차이점
$ date >> hello.prac // 현재시간 hello.prac 에 추가
$ cat hello.prac
echo helloworld!
:q
2022년 1월 17일 월요일 15시 34분 09초 KST
$ date > hello.copy // 현재시간 hello.copy 안의 내용 삭제 후 추가
$ cat hello.copy
2022년 1월 17일 월요일 15시 34분 28초 KST
'개발 > Linux' 카테고리의 다른 글
[Nginx] Nginx 의 개념 및 nginx.conf 설정에 대해 알아보기 (0) | 2024.03.27 |
---|---|
개발서버 들어가는 법 / 개발 환경에 있는 파일 다운로드 (0) | 2023.07.01 |
이미 사용중인 port | Port 8080 was already in use (0) | 2022.07.12 |
[Linux] Xshell 에서 aws 공개키 확인하기/ ssh-key pair 새로 생성하기 (0) | 2022.02.16 |
[Mac/Linux] file, directory 생성/삭제/복사/구조확인 (0) | 2022.01.17 |