1. pwd
这种方法适用于 bash,不适用 zsh,其他 shell 没有试过。
bash-3.2$ pwd file.txt
/Users/baidu/Desktop/file.txt
pwd 输出结果是该文件的路径,但并不包含这个文件名。
2. readlink
Linux 上可以使用 readlink:
➜ readlink -f file.txt
/Users/baidu/Desktop/file.txt
在 Mac OS 上需要
➜ brew install coreutils
➜ greadlink -f file.txt
/Users/baidu/Desktop/file.txt
3. realpath
➜ realpath file.txt
/Users/baidu/Desktop/file.txt
vim 中显示绝对路径
先按 1,再按 ctrl + g。
References
https://stackoverflow.com/questions/3915040/bash-fish-command-to-print-absolute-path-to-a-file
https://stackoverflow.com/questions/5265702/how-to-get-full-path-of-a-file
粉丝