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.
Ubuntu マシンに大量の画像を含むフォルダーがあります。
などの特定の末尾を持つすべてのファイルを見つけるにはどうすればよい_some_ending.tifですか?
_some_ending.tif
現在のディレクトリのみ:
ls *_some_ending.tif
ディレクトリを再帰するには:
find . -name "*_some_ending.tif"
私はphpを初めて使用します。正確な文字列「<?php」をHTML文字列として出力する方法、ファイルから出力する方法(つまりfile_get_contents(blah);)、またはecho "<?php";コードセグメント内で出力する方法を理解できませんでした。データが出力されないため、phpコードセグメントの開始とし
<?php
file_get_contents(blah);
echo "<?php";