Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # rename `_` 로 만들어진 파일명을 `-`로 변경한다. <code> find . -type f | perl -pe 'print $_; s/_/-/g' | xargs -n2 mv </code> <code> rename -v -n 's/_/-/g' * </code> <code> -v, --verbose Verbose: print names of files successfully renamed. -n, --no-act No Action: show what files would have been renamed. </code> open/rename.txt Last modified: 2024/10/05 06:15by 127.0.0.1