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.
サーバーにフォルダーを作成しました(つまり、フィネス)-「ホーム」には、いくつかのperl(.pl)ファイルがあります
perl(.pl)
tt.pl、re.pl など
「ホーム」フォルダに「perl」という新しいフォルダを作成しました
tt.pl と re.pl を perl フォルダに移動したい
そのためのコマンドはありますか (Windows のカットアンドペーストなど)?
注:Windows XPでパテ0.60を使用しています
これはうまくいくはずです
mv - move (rename) files
mv [OPTION]... [-T] SOURCE DEST mv [OPTION]... SOURCE... DIRECTORY mv [OPTION]... -t DIRECTORY SOURCE...
あなたの場合:
mv tt.pl re.pl perl/
mv ホーム/*.pl ホーム/perl/
それはあなたが探しているものですか?