Rename Filenames Wirth Full Angular-Chinese

前端之家收集整理的这篇文章主要介绍了Rename Filenames Wirth Full Angular-Chinese前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
#!/bin/sh

for i in 01 02 03 04
do
	pushd "$i"
	ls *.txt | while read f
	do
		echo "${f:5}"
		cp "$f" "r/${f:5}"
	done
	popd
done
原文链接:https://www.f2er.com/angularjs/149266.html

猜你在找的Angularjs相关文章