remove all migration files code example
Example 1: remove all .orig files mac terminal
find . -name '*.orig' -delete
Example 2: how to remove all space in file
cat file.txt | tr -d " \t\n\r"
find . -name '*.orig' -delete
cat file.txt | tr -d " \t\n\r"