반응형
special symbols
.
: current directorycp f1 ./f2
-- copy f1 to f2 in the current directory
..
: parent directorycp f1 ../f2
-- copy f1 to f2 in the parent directory
>
: standard output redirectioncat f1 > f3
-- display the content of f1 in f3 (same effect as “cp f1 f3”)
|
: pipe. redirect the standard output of the first program into the standard input of the second programcat f1 | more
*
: match any file namels b*
-- diplay all file/directory names that start with ‘b’
반응형
'Development > Linux' 카테고리의 다른 글
[Linux] VI 기본 사용법 및 명령어 정리 (0) | 2022.04.17 |
---|---|
[Linux] Command Classification (명령어 분류) (0) | 2022.04.17 |
[Linux] 파일 트리 (file tree) (0) | 2022.04.17 |
[Linux] 상대경로와 절대경로 (Relative path, Absolute path) (0) | 2022.04.17 |
[Linux] 기본 명령어 모음 (A-Z 순) (0) | 2022.04.15 |