백업하기

for file in *.conf ; do cp $file $file.orig ; done


복구하기

for file in *.orig ; do cp $file `basename $file.orig` ; done

이 게시물을..