- 在 cat 文件中 - 是什么意思 -
What is the meaning of - in cat file -
我最近不得不使用一些给我的代码,其中有这一行
cat file -
有人知道 -
是什么意思吗。
-
表示 "read from standard input" (这是一个 POSIX 约定)。在 shell 中尝试此操作,您会看到 cat
重复您键入的所有内容:
$> cat -
我最近不得不使用一些给我的代码,其中有这一行
cat file -
有人知道 -
是什么意思吗。
-
表示 "read from standard input" (这是一个 POSIX 约定)。在 shell 中尝试此操作,您会看到 cat
重复您键入的所有内容:
$> cat -