#!/bin/bash

#SECONDS=0 ; sleep 10 ; echo $SECONDS

#special="'"
#regular="`"
#find . -depth -name "*$special*" | \
#while IFS= read -r ent; do mv $ent ${ent%"$special"*}"$regular"${ent##*"$special"}; done

#for f in *; do mv "$f" `echo "$f" | sed 's/\x27//g'`; done

#printf "\x$(printf %x 65)"

#find . -name "P" -exec FileElimSQ {} \;

#/bin/bash /root/batch/FileElimSQ

find -name "*'*" -type f -exec rename -n -v "s/'//g" '{}' +

