반응형
for x in *.xml; do t=$(echo $x | sed 's/\.xml$/.txt/'); mv $x $t && echo "moved $x -> $t" done
- 출처 : https://superuser.com/questions/31464/looping-through-ls-results-in-bash-shell-script
반응형
'프로그래밍 > 쉘프로그래밍' 카테고리의 다른 글
cut 명령 예제 (0) | 2018.11.26 |
---|---|
일반변수$, $(), ${} 의 이해 (0) | 2017.12.23 |
인자값이해, 인자값 쉘프로그램 (0) | 2017.12.21 |