/home/techb158/.nvm
NameSizeModeActions
.cache/-0775rm
.git/-0775rm
.github/-0775rm
alias/-0775rm
test/-0775rm
versions/-0775rm
.dockerignore1400664editdlrm
.editorconfig5230664editdlrm
.gitattributes90664editdlrm
.gitignore2530664editdlrm
.mailmap510664editdlrm
.npmrc190664editdlrm
.travis.yml35950664editdlrm
bash_completion22990664editdlrm
CODE_OF_CONDUCT.md75600664editdlrm
CONTRIBUTING.md47670664editdlrm
Dockerfile36910664editdlrm
GOVERNANCE.md4670664editdlrm
install.sh159160775editdlrm
LICENSE.md11130664editdlrm
Makefile53610664editdlrm
nvm-exec3510775editdlrm
nvm.sh1420600664editdlrm
package.json23720664editdlrm
PROJECT_CHARTER.md29350664editdlrm
README.md449420664editdlrm
rename_test.sh12350775editdlrm
ROADMAP.md8820664editdlrm
update_test_mocks.sh24780775editdlrm
Edit: /home/techb158/.nvm/rename_test.sh (1235B)
#! /usr/bin/env bash find_name(){ find test -name "*[\\/:\*\?\"<>\|]*" -o -name "*." } check_name() { if [ "$(find_name | wc -l)" != "0" ]; then printf '%s\n\n' "The following filenames contain unwanted characters:" find_name printf '\n%s\n%s\n' "Please run ./rename_test.sh" "If the problem persist, please open an issue." exit 1 else echo "Ok" fi } rename_test() { local filename local new_filename while read -r filename; do # Even though it looks < and > are replaced by the same < and >, the latters are not ASCII code # If you check with 'cat -v rename_test.sh' you would see 's//M-KM-^C/g' # M-KM-^B -> U+02C2 # M-KM-^C -> U+02C3 new_filename=$(echo "$filename" | sed -r \ -e "s/\"/'/g" \ -e 's//˃/g' \ -e 's/^(.*)\.$/\1/' ) printf '%s\n%s\n\n' "$filename" "$new_filename" [ "$filename" != "$new_filename" ] && git mv "$filename" "$new_filename" done < <(find_name) if [ "$(find_name | wc -l)" != "0" ]; then echo "Still some files to treat:" find_name else echo "Done" fi } main() { if [ "$1" = "--check" ]; then check_name else rename_test fi } main "$@"