写真(数千)の大きなフォルダーがあり、正確なファイル名で別のフォルダーにコピーする必要があるファイルの長いリストがあります。このフォルダからいくつかの特定のファイルを名前で選択し、ターミナルを使用して、個別にコピーせずに別のフォルダにコピーする方法があるかどうかを知りたいですか?
これを実現する方法はいくつかあります。私が見た最も簡単な方法は、以下を使用することです。
cp /home/usr/dir/{file1,file2,file3,file4} /home/usr/destination/
構文では、cpコマンドの後に、目的のファイルが置かれているディレクトリへのパスを続けて使用し、コピーするすべてのファイルを角かっこで囲み、カンマで区切ります。
ファイル間にスペースがないことに注意してください。コマンドの最後の部分/home/usr/destination/
は、ファイルをコピーするディレクトリです。
または、すべてのファイルのプレフィックスが同じで、末尾が異なる場合は、次のようにすることができます。
cp /home/usr/dir/file{1..4} ./
File1、file2、file3、およびfile4がコピーされる場所。
あなたが質問をどのように表現したかから、これはあなたが探しているものであると信じていますが、ファイルのリストから読み取り、すべてを特定のディレクトリにコピーするコマンドを探しているようにも思えます。その場合はお知らせください。回答を編集します。
それで、私は仕事を成し遂げるべきだと思う小さなpythonスクリプトを書きました。ただし、pythonにどれだけ精通しているかはわかりません(精通している場合)。このスクリプトの使用方法をできる限り説明し、必要なだけ質問してください。 。
import os,sys,shutil
### copies a list of files from source. handles duplicates.
def rename(file_name, dst, num=1):
#splits file name to add number distinction
(file_prefix, exstension) = os.path.splitext(file_name)
renamed = "%s(%d)%s" % (file_prefix,num,exstension)
#checks if renamed file exists. Renames file if it does exist.
if os.path.exists(dst + renamed):
return rename(file_name, dst, num + 1)
else:
return renamed
def copy_files(src,dst,file_list):
for files in file_list:
src_file_path = src + files
dst_file_path = dst + files
if os.path.exists(dst_file_path):
new_file_name = rename(files, dst)
dst_file_path = dst + new_file_name
print "Copying: " + dst_file_path
try:
shutil.copyfile(src_file_path,dst_file_path)
except IOError:
print src_file_path + " does not exist"
raw_input("Please, press enter to continue.")
def read_file(file_name):
f = open(file_name)
#reads each line of file (f), strips out extra whitespace and
#returns list with each line of the file being an element of the list
content = [x.strip() for x in f.readlines()]
f.close()
return content
src = sys.argv[1]
dst = sys.argv[2]
file_with_list = sys.argv[3]
copy_files(src,dst,read_file(file_with_list))
このスクリプトは、比較的簡単に使用できます。まず、上記のコードをプログラムgedit(Ubuntuにプリインストールする必要があります)またはその他のテキストエディターにコピーします。
それが完了したら、ファイルをmove.pyとしてホームディレクトリに保存します(任意のディレクトリを指定できますが、説明を簡単にするために、ホームディレクトリを使用してください)、またはファイルが含まれるディレクトリを追加しますPATHに。次に、ターミナルからcd
をホームディレクトリ(またはmove.pyを保存したディレクトリ)に移動し、次のコマンドを入力します。
python move.py /path/to/src/ /path/to/dst/ file.txt
これにより、ソースディレクトリから宛先ディレクトリにリストされているすべてのファイルが、pic(1).jpg、pic(2).jpgなどの形式で複製されます。 file.txtは、コピーしたいすべての画像をリストするファイルで、各エントリは個別の行になります。
このスクリプトがソースディレクトリに影響を与えることはありませんが、ソースおよび宛先ディレクトリへの正しいパスを入力するようにしてください。最悪の事態は、ファイルを間違ったディレクトリにコピーすることです。
/
を忘れないでくださいおそらくあなたの質問の詳細が欠けていますが、与えられた答えは過剰に思えます。スクリプトではなくコマンドラインソリューションが必要な場合は、次のようにします。
cd /path/to/src/
cp -t /path/to/dst/ file1 file2 file3 ...
この方法で行うことの良い点は、ファイル名をTabキーで補完できることです。
これが純粋なbashソリューションです。入力ファイルからファイル名(行ごとに1つ)を読み取り、それぞれをコピーして、重複の名前を変更します。
#!/usr/bin/env bash
## The destination folder where your files will
## be copied to.
dest="bar";
## For each file path in your input file
while read path; do
## $target is the name of the file, removing the path.
## For example, given /foo/bar.txt, the $target will be bar.txt.
target=$(basename "$path");
## Counter for duplicate files
c="";
## Since $c is empty, this will check if the
## file exists in target.
while [[ -e "$dest"/"$target"$c ]]; do
echo "$target exists";
## If the target exists, add 1 to the value of $c
## and check if a file called $target$c (for example, bar.txt1)
## exists. This loop will continue until $c has a value
## such that there is no file called $target$c in the directory.
let c++;
target="$target"$c;
done;
## We now have everything we need, so lets copy.
cp "$path" "$dest"/"$target";
done
このスクリプトを$PATH
のフォルダーに保存し、パスのリストを入力として呼び出します。
auto_copy.sh < file_paths.txt
ターミナルからコマンドとして全体を実行することもできます。
while read path; do
target=$(basename "$path");
c="";
while [[ -e bar/"$target"$c ]]; do
echo "$target exists";
let c++;
target="$target"$c;
done;
cp "$file" bar/"$target";
done < file_names;
質問の説明によると、私の理解は次のとおりです。
input.txt
がありますしたがって、次のコマンドを使用できます。
xargs -I % --arg-file=input.txt cp /path/to/Origin_dir/% /path/to/destination
説明:
-I %
は、コマンド内で使用される現在処理されているファイルのシンボルを指定します--arg-file=input.txt
は、input.txt
からコマンドへの引数を取ることを指定しますcp /path/to/Origin_dir/% /path/to/destination/
は、/path/to/Origin_dir/%
が/path/to/Origin_dir/
と現在処理されているファイルの名前に置き換えられたcp
コマンドを実行します。実際の例:
$ cat input.txt
file2.txt
file1.txt
file3.txt
$ ls ./docs
file1.txt file2.txt file3.txt
$ xargs -I % --arg-file=input.txt cp ./docs/% ./docs_destination/
$ ls ./docs_destination/
file1.txt file2.txt file3.txt