0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

full pathをlsみたいに得る方法

Last updated at Posted at 2019-01-18

fullpathを得るためにpwd + lsなどを使っていたが手間だったので、ls likeにfull pathを取得できるようにした。
ls_fullの引数にディレクトリを指定したときに、正確なフルパスが得られずに、カレントディレクトリのなかパスにつなげて、指定したディレクトリの中身が表示されるケースがあるようです。

#current directoryにあるもののfull pathを得る
ls -1 | xargs -n1 readlink -f
#./hoge のdirectoryにあるもののfull pathを得る
ls -1 ./hoge | xargs -n1 readlink -f

.bashrcなどに関数として定義する場合

.bashrc
ls_full () {
        ls -1 $@ | xargs -n1 readlink -f
}
ls_full -a #カレントディレクトリの中身のフルパスを隠しファイルも含めて表示
ls_full ./hoge

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?