首页 > 代码库 > 关于LS > C有感

关于LS > C有感

关于这样一段代码

[root@xx] cd /mnt/

[root@xx] ls

[root@xx] touch a b

[root@xx] ls

a   b

[root@xx] ls > c

[root@xx] ls

a   b   c

[root@xx] cat c

a

b

c

可以看到,ls > c 的内容是 a,b,c,而不是将a,b送入文件c中,因此,我觉得执行 ls >c这样简单的命令,首先系统会判断ls命令的正确和c文件是否存在的合理性,若c不存在,那会先生成c,之后才会执行 ls,并将此时ls的值送入c中。

本文出自 “11827782” 博客,请务必保留此出处http://11837782.blog.51cto.com/11827782/1880211

关于LS > C有感