是否有一种简单的方法可以打印file.txt的完整路径?
file.txt = /nfs/an/disks/jj/home/dir/file.txt
<命令>
dir> <command> file.txt
应该打印
/nfs/an/disks/jj/home/dir/file.txt
是否有一种简单的方法可以打印file.txt的完整路径?
file.txt = /nfs/an/disks/jj/home/dir/file.txt
<命令>
dir> <command> file.txt
应该打印
/nfs/an/disks/jj/home/dir/file.txt
当前回答
使用指向:
readlink -f file.txt
其他回答
这对我来说很有效。它不依赖于文件系统(取决于需要的利弊),所以它会很快;并且,它应该可以移植到大多数*NIX。它假设传递的字符串确实是相对于PWD,而不是其他目录。
function abspath () {
echo $1 | awk '\
# Root parent directory refs to the PWD for replacement below
/^\.\.\// { sub("^", "./") } \
# Replace the symbolic PWD refs with the absolute PWD \
/^\.\// { sub("^\.", ENVIRON["PWD"])} \
# Print absolute paths \
/^\// {print} \'
}
find $PWD -type f | grep "filename"
or
find $PWD -type f -name "*filename*"
我很惊讶居然没人提到定位。
如果已经安装了定位包,甚至不需要在感兴趣的文件所在的目录中。
假设我正在寻找一个setenv.sh脚本的完整路径名。这就是找到它的方法。
$ locate setenv.sh
/home/davis/progs/devpost_aws_disaster_response/python/setenv.sh
/home/davis/progs/devpost_aws_disaster_response/webapp/setenv.sh
/home/davis/progs/eb_testy/setenv.sh
注意,在这种情况下它会找到三个脚本,但是如果我只需要一个I 会这样做:
$ locate *testy*setenv.sh
/home/davis/progs/eb_testy/setenv.sh
在mac下面提到的行工作。不需要添加任何花哨的线条。
> pwd filename
通常:
find `pwd` | grep <filename>
或者,只针对当前文件夹:
find `pwd` -maxdepth 1 | grep <filename>