[linux] rm, touch, alias, 파일 내용 보기 rm, touch, alias, view file contents

♦ 파일 및 디렉토리 삭제  : rm             ※삭제 시 질문함(-i 옵션 생략)
-f : 삭제 시 질문 하지 않음. 오류 무시
-r : 하위 디렉토리부터 상위 디렉토리로 지우면서 나옴
     ex) rm -r /a : /a 안에 파일이 있으면 그 파일부터 삭제하고 /a 삭제

♦ Delete files and directories: rm       ※ Ask when deleting (-i option omitted)
-f: Do not ask for deletion. Ignore errors
-r: Remove subdirectories from parent directory
     Ex) rm -r / a: If there is a file in / a, delete it and delete / a

♦ फाइल र निर्देशिका मेटाउन: मेटाउने जब (को --म विकल्प हटाउदैँ) rm ※ केरकार गर्नुपर्छ
-f: हटाइएको गर्दा नसोध्नुहोस्। त्रुटिहरू बेवास्ता
-r: सबडाइरेक्टरीहरू वाफ बाट स्पष्ट गर्दा अभिभावक निर्देशिका
     पूर्व) RM -r / एक: / एक को फाइल हटाइयो फाइल / एक मेटिएको भने



♦ 빈 파일 생성, 생성 시간 변경  :  touch [경로]
-t 년월일시분(yyyymmddhhmm) [디렉토리] : 시간바꾸기
-d 년월일(yyyymmdd) [디렉토리] : 시,분 바꾸기

♦ Create an empty file, change the creation time: touch [path]
-t date of the month (yyyymmddhhmm) [directory]: change the time
-d date (yyyymmdd) [directory]: change hour, minute

♦ खाली फाइल पुस्ता समय परिवर्तन सिर्जना गर्नुहोस्: touch [बाटो]
जब मिति -t मिनेट (yyyymmddhhmm) [निर्देशिका]: समय परिवर्तन
-d तिथि (yyyymmdd) [निर्देशिका]: घण्टा परिवर्तन, मिनेट



♦ 명령어 단축기 만들기 : alias
ex) alias 1='clear' : 1 입력하면 'clear' 명령어 실행

♦ Create a command hotkey: alias
ex) alias 1 = 'clear': 1

♦ एक हटकुञ्जीसेटिङकन्फिगरगर्नुहोस् आदेश सिर्जना गर्नुहोस्: alias
पूर्व) alias 1 = 'clear': 1 'clear' आदेश कार्यान्वयन प्रवेश



♦ 명령어 단축기 삭제 : unalias
ex) unalias 1

♦ Delete command hotkey: unalias
Ex) unalias 1

♦ आदेश सर्टकटहरू मेटाउनुहोस्: unalias
पूर्व) unalias 1



♦ 파일 내용 보기 : cat
♦ View file contents: cat
♦ फाइल सामग्रीहरू हेर्न: cat



♦ 내용 앞에서부터 출력 : head [-행 수]
♦ Contents Output from the beginning: head [- number of lines]
♦ सामग्री देखि उत्पादन अघि: head [- पङ्क्तिहरू;



♦ 내용 뒤에서부터 출력 : tail [-행 수]
♦ Output after content: tail [- number of lines]
♦ फिर्ता उत्पादन जानकारी: tail [- पङ्क्तिहरू;



♦ 화면 짤라서 보여주기 (디렉토리 불가능) : more
ex) more [파일 경로]
※ 스페이스 치면 한 페이지 씩 내려가고 엔터 치면 한 줄 씩 내려감
※ 디렉토리 보기 : ls -l [경로] | more   ( | = 쉬프트 + \)

♦ Show screen (no directory): more
Ex) more [file path]
※ If you hit a space, go down one page and enter.
※ View directory: ls -l [path] | More ( | = shift + \)

♦ स्क्रीन शो काटन थियो (निर्देशिका सम्भव छैन): more
पूर्व) more [फाइल मार्ग]
※ एक द्वारा एक पृष्ठ हिट प्रविष्ट गर्नुहोस् हिट ठाउँ तल एक पट्टी तल जाने
हेर्नुहोस् ※ निर्देशिका: ls -l [बाटो] | more ( | = shift + \)



♦ 화면 짤라서 보여주기 (디렉토리 가능) : less
※ j : 화면 내리기 k : 화면 올리기 q : 나가기

♦ Show screen (directory available): less
※ j: Screen down, k: Screen up, q: Exit

♦ स्क्रीन शो काटन थियो निर्देशिका (उपलब्ध): less
※ जे: तल स्क्रीन, K: अपलोड स्क्रीन, Q: निकास



♦ 내용 앞에 행 번호 추가 : nl
ex)ls -l [경로] | nl | less | more : 명령이 오른쪽부터 실행 되므로 more, nl, ls 명령어만 실행되고 less는 실행되지 않는다.( more과 less는 겹치기 때문에)

♦ Add line number before content: nl
Ex) ls -l [path] | nl | less | more: Because the command is executed from the right, only the more, nl, and ls commands are executed, and less is not executed (because more and less overlap).

♦ सामग्रीहरू अगाडि लाइन नम्बर थप्नुहोस्: nl
पूर्व) -l [बाटो] ls | nl | less | more: आदेश सही पक्ष more, nl, केवल चलान रास आदेश कार्यान्वयन छैन देखि कार्यान्वयन छ less (किनभने मिल्दाजुल्दा को संग more less) छ।




파일 내용 보고 싶다면 클릭
If you want to see the contents of the file, click
तपाईं फाइल सामग्रीहरू हेर्न चाहनुहुन्छ भने, क्लिक गर्नुहोस्
https://www.youtube.com/watch?v=-qlH74pWAVY

Comments