Development/Linux
[Linux] special symbols
oneonlee
2022. 4. 17. 15:34
반응형
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’
반응형