Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 빅오메가
- Big-Oh notation
- matrix-vector product
- matrix fo a linear transformation
- 재귀함수
- Big-Oh 예제
- 배열 섞기
- one-to-one
- 코틀린 시작하기
- 빅오 표기법
- nontrivial solution
- 빅세타
- 이진 탐색
- Big-O 예제
- recursive algorithms
- trivial solution
- nonhomogeneous linear system
- NumPy
- solutions of matrix equation
- 알고리즘 분석의 실례
- python
- linear dependence
- 일차변환
- Big Theta
- 랜덤 순서 배열
- Big Omega
- homogeneous linear system
- 코틀린 Hello World!
- itertools
- matrix trnasformations
Archives
- Today
- Total
코딩 연습
(Linux) 파일 생성과 수정 본문
반응형
cat 을 이용한 파일의 생성
cat > creatingfile
cat 이라는 명령어를 이용하여 creatingfile 이라는 파일을 생성한다. 이때, > 라는 redirect 기호를 같이 사용해야 파일이 생성된다.
이후에 파일의 내용을 입력하고 CTRL-D 를 입력하면 파일이 생성된다.
❯ cat > creatingfile
Test of creating file.
생성된 파일의 내용을 보고 싶다면 cat creatingfile 명령을 사용한다.
❯ cat creatingfile
Test of creating file.
생성된 파일에 내용을 추가하고 싶다면 cat >> creatingfile 과 같이 double redirect (>>)를 사용한다.
❯ cat >> creatingfile
Adding contents.
파일의 내용을 확인하면 다음과 같다.
❯ cat creatingfile
Test of creating file.Adding contents.
이후에 새로운 내용으로 overwrite 하고 싶다면 다시 cat > creatingfile 명령을 사용한다.
❯ cat > creatingfile
New contents.
파일의 내용을 확인하면 다음과 같다.
❯ cat > creatingfile
New contents.
touch 를 이용한 파일의 생성
내용이 없는 새로운 파일을 생성할 때는 touch 를 사용한다.
❯ touch newfile
❯ ls
newfile
위와 같이 newfile 이라는 새로운 파일이 생성된 것을 볼 수 있다.
반응형
'Linux' 카테고리의 다른 글
EndeavourOS 에서 wifi 가 작동하지 않는 경우 (0) | 2022.05.14 |
---|---|
(Linux) 텍스트 가지고 놀기 (0) | 2022.05.13 |
(Linux) 검색 (0) | 2022.05.11 |
리눅스 - kime 입력기에서 한-영 전화키 shift-space로 바꾸기 (0) | 2022.01.12 |
리눅스에서 AppImage 바로가기 만들기 (0) | 2021.12.15 |
Comments