关于linux目录下的.与..

每当我们执行ls -al时总能看见两个文件“.”与“..”。为其名曰,隐形文件。实际上就是我们日常熟知的当前目录“.”与上一级目录“.."

e.g

举个例子

[root@monitor test]# pwd
/root/test
[root@monitor test]# ls
ceshi.sh
[root@monitor sh]# pwd
/root/test/sh
[root@monitor sh]# ../ceshi.sh
2
[root@monitor sh]# cat ../ceshi.sh
#!/bin/bash
sum=1+1
declare -i sum=1+1
echo "$sum"

你可能感兴趣的:(linux,职场,目录,休闲,linux目录)