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.
Bashで有効になっている正規表現を拡張しました
shopt -s extglob
問題の解決に役立つ場合があります。
ディレクトリも移動するため、次の実行に失敗しました
$ mv `find . -maxdepth 1` django-tes/
ディレクトリ以外のすべてのファイルを見つけて、それらを django-tes/ というディレクトリに移動しようとしています。
フォルダー内のディレクトリを除くすべてのファイルをターミナルのフォルダーに移動するにはどうすればよいですか?
使ってみてfind . -type f -maxdepth 1
find . -type f -maxdepth 1