Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ディレクトリを i ノード番号で入力したいのですが、なぜですか?
cd $(find . -inum $inode_num)
機能しますが、次のコマンドは機能しません。
find . -inum $inode_num -exec cd {} \;
これら2つの違いは何ですか?2番目が間違っているのはなぜですか?
cd使用できるプログラムではなく、exec組み込みのシェルコマンドです。親プロセスで現在のディレクトリを変更するのは難しいので、そうする必要があります。
cd
exec