bash脚本-“ ls ..”(带有双点的ls)有什么作用?

时间:2019-02-21 17:21:24

标签: bash ls

我的作业要求我找到ls ..的作用。

我尝试搜索互联网,但找不到该问题的答案。

有人知道此命令的作用吗?

1 个答案:

答案 0 :(得分:-1)

..是当前目录中的条目,它引用当前目录的父目录。这不是ls仅使用的特殊约定。例如:

$ cd /usr/bin
$ pwd
/usr/bin
$ cd ..
$ pwd
/usr
$ [ -d .. ] && echo "It's a directory"
It's a directory
$ stat ..
<output specific to your installed version of stat>