All Articles

μˆœμ„œλ₯Ό μ΄μš©ν•΄μ„œ 파일 이름에 숫자 뢙이기

https://stackoverflow.com/questions/3211595/renaming-files-in-a-folder-to-sequential-numbers

파일 이름을 κ·Έλƒ₯ μ‹Ή μˆœμ„œλ‘œ λ°”κΎΈκ³  싢을 λ•Œ

ls | cat -n | while read n f; do mv "$f" `printf "%04d.extension" $n`; done

ν•΄μ„€

$ ls
bash     caddy    django   docker   leetcode python
$ ls | cat -n
     1	bash
     2	caddy
     3	django
     4	docker
     5	leetcode
     6	python

while read n f μ΄κ±°λŠ” νŠœν”Œ 읽듯이 λΌμΈλ„˜λ²„λž‘ 파일λͺ…을 νŒŒμ‹±ν•΄μ„œ 루프 μ•ˆμ— 집어 λ„£μ–΄μ£ΌλŠ”κ±°

Published May 1, 2018

If I keep marking the dots, someday they will πŸ”—πŸ”—