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.
私はファイルを持っていることを知っています。 このファイルが Hello.txt、または HeLLo.txt、または HEllo.txt、またはその他のケース バリエーションであることはわかっています。
したがって、次を使用してこのファイルを見つけることができます。
find . -iname hello.txt
そして、それを見つけます。
実際の名前 ("HelLO.txt") を Linux 変数に入れるにはどうすればよいですか?
最も簡単な方法:
var=`find . -iname hello.txt`
これにより、一致するすべてのファイル名が変数に割り当てられるため、複数のバリアント (Hello HeLLO、hello HELLO など) がある場合は、それらすべてを var に取得することに注意してください。
var=`find . -iname hello.txt | head -n1 | sed 's/.*\///g'`
あなたがしたいことをするべきです。