bash: ./registerf.sh: /bin/bash^M: bad interpreter: No such file or directory
This error is very common and happens because your script file (registerf.sh) has Windows-style line endings (CRLF, where ^M represents the extra Carriage Return character). Linux/macOS/Bash expects Unix-style line endings (just LF), so it misinterprets…






























