2013年4月2日星期二

How to change the names in linux with bash shell


#!/bin/bash
for file in `ls /home/test/Documents/network`
do
    mv $file $file.txt
done

没有评论:

发表评论