hans

hans

【Python】【Shell】將txt文檔中檔案名對應的檔案複製到其他資料夾


cat file.txt | xargs -i cp {} /path/

txt 中一個文件名佔一行

#!/usr/bin/env python2
# -*- coding: utf-8 -*-
"""
Created on Tue Jun 13 16:55:14 2017

author: hans
"""
import Image

f = open('list.txt')
for line in f:
    line=line.strip('\n')
    im = Image.open('/path/to/image/%s' %line)
    im.save('./path/to/destination/%s' %line)
載入中......
此文章數據所有權由區塊鏈加密技術和智能合約保障僅歸創作者所有。