0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ダブルドットを含む冗長なパスを正規化する

Last updated at Posted at 2024-04-27

親ディレクトリを表すダブルドットやカレントディレクトリを表すドットを含む冗長なパスをシンプルなパスに変換したいときはどうしますか?

調べたところ realpath -ms を用いることができるようです。

$ realpath -ms -- /foo/bar/../lib
/foo/lib

ただし、相対パスは、カレントディレクトリからのパスの絶対パスに変換されてしまいますので、注意です。

$ realpath -ms -- foo/bar/../lib
/home/uuu/foo/lib

その他の方法

bash の配列を用いた bash 関数を自作された方がいました。

冗長なパス foo/bar/../lib を foo/lib に変換する | 晴耕雨読
https://tex2e.github.io/blog/shell/remove-verbose-from-path

以上です。

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?