Run cat -v file.sh
.
You most likely have a carriage return or no-break space in your file. cat -v
will show them as ^M
and M-BM-
or M-
respectively. It will similarly show any other strange characters you might have gotten into your file.
Remove the Windows line breaks with
tr -d '\r' < file.sh > fixedfile.sh
Related Posts:
- How do I pause my shell script for a second before continuing?
- Cp: target is not a directory
- How do I tell if a regular file does not exist in Bash?
- In the shell, what does ” 2>&1 ” mean?
- What is the preferred Bash shebang?
- Read a file line by line assigning the value to a variable
- How to compare strings in Bash
- How to decode Seagate’s hard drive date code in a Bash script
- In the shell, what does ” 2>&1 ” mean?
- Difference between wait and sleep
- How do I parse command line arguments in Bash?
- Multi-line string with extra space (preserved indentation)
- How to make “if not true condition”?
- ‘\r’: command not found – .bashrc / .bash_profile [duplicate]
- Bash script and /bin/bash^M: bad interpreter: No such file or directory
- -bash: syntax error near unexpected token `newline’
- An “and” operator for an “if” statement in Bash
- How can I check if a directory exists in a Bash shell script?
- Echo newline in Bash prints literal \n
- Bash script and /bin/bash^M: bad interpreter: No such file or directory [duplicate]
- Passing parameters to a Bash function
- How can I use “:” as an AWK field separator?
- An “and” operator for an “if” statement in Bash
- “while :” vs. “while true” [duplicate]
- What is the meaning of 2 in 2> /dev/null
- How to reload .bash_profile from the command line?
- What is the purpose of “&&” in a shell command?
- Bash scripting missing ‘]’
- How do I compare two string variables in an ‘if’ statement in Bash?
- Return value in a Bash function
- Is bash a programming language?
- How can I count all the lines of code in a directory recursively?
- How can I kill a process by name instead of PID, on Linux?
- Pass variable from one Jenkins stage to others in sh
- Which characters need to be escaped when using Bash?
- What is cp: cannot stat error in Unix, I get this error when trying to copy thing from one folder to another
- Delete all local git branches
- How can I get the source directory of a Bash script from within the script itself?
- cp: missing destination file operand after
- Shell: How to call one shell script from another shell script?
- How can I match a string with a regex in Bash?
- How to use gdb with pipes and stdin
- echo that outputs to stderr
- How to define hash tables in Bash?
- How to escape single quotes within single quoted strings
- What is cp: cannot stat error in Unix, I get this error when trying to copy thing from one folder to another
- How to check if an environment variable exists and get its value?
- Bash syntax error: unexpected end of file
- Create timestamp variable in bash script
- How to convert a string to lower case in Bash?
- How do I edit $PATH (.bash_profile) on OS X?
- Binary Data Posting with curl
- Difference between return and exit in Bash functions
- Check number of arguments passed to a Bash script
- How to modify a global variable within a function in bash?
- choosing between $0 and BASH_SOURCE
- Create a new file in git bash
- How to specify the private SSH-key to use when executing shell command on Git?
- How do I remove the file suffix and path portion from a path string in Bash?
- Sorting data based on second column of a file
- Fast ping sweep in python
- Speed up rsync with Simultaneous/Concurrent File Transfers?
- Multi-dimensional arrays in Bash
- Variable interpolation in the shell
- What’s the meaning of the parameter -e for bash shell command line?
- How do I add a newline using printf?
- zip error – Nothing to do
- How to remove last n characters from a string in Bash?
- How can I check if a program exists from a Bash script?
- Bash command to sum a column of numbers
- Meaning of “[: too many arguments” error from if [] (square brackets)
- Check existence of input argument in a Bash shell script
- Associative arrays in Shell scripts
- How to split one string into multiple strings separated by at least one space in bash shell?
- Linux find and grep command together
- Make a Bash alias that takes a parameter?
- Copy multiple files from one directory to another from Linux shell
- curl: no URL specified for restful api
- firebase-tools “-bash: firebase: command not found”
- How can I do a recursive find/replace of a string with awk or sed?
- source command not found in sh shell
- Running bash script from within python
- How to run C program on Mac OS X using Terminal?
- bash : cd : too many arguments
- Bash mkdir and subfolders
- Linux Bash: Move multiple different files into same directory
- How to get the first line of a file in a bash script?
- Difference between sh and Bash
- How to open Emacs inside Bash
- Error handling in Bash
- bash which OR operator to use – pipe v double pipe
- Timeout a command in bash without unnecessary delay
- How to determine if a bash variable is empty?
- What is the difference between double and single square brackets in bash?
- How do I get the current Unix time in milliseconds in Bash?
- How to create a UUID in bash?
- Run an interactive bash subshell with initial commands without returning to the (“super”) shell immediately
- bash: print stderr in red color
- How to make bash scripts print out every command before it executes?
- What does passing the -xe parameters to /bin/bash do