If you are on a OS X, this probably has nothing to do with the sed command. On the OSX version of sed
, the -i
option expects an extension
argument so your command is actually parsed as the extension
argument and the file path is interpreted as the command code.
Try adding the -e
argument explicitly and giving ''
as argument to -i
:
find ./ -type f -exec sed -i '' -e "s/192.168.20.1/new.domain.com/" {} \;
See this.
Related Posts:
- How to grep for case insensitive string in a file?
- Using find command in bash script
- find: missing argument to -exec
- How do I edit $PATH (.bash_profile) on OS X?
- RE error: illegal byte sequence on Mac OS X
- sed command with -i option failing on Mac, but works on Linux
- Using SED with wildcard
- Linux find and grep command together
- How can I do a recursive find/replace of a string with awk or sed?
- How to run C program on Mac OS X using Terminal?
- How do I pause my shell script for a second before continuing?
- Cp: target is not a directory
- In the shell, what does ” 2>&1 ” mean?
- What is the preferred Bash shebang?
- How to compare strings in Bash
- How to decode Seagate’s hard drive date code in a Bash script
- How do I parse command line arguments in Bash?
- Installing Homebrew on OS X
- How to make “if not true condition”?
- Multi-line string with extra space (preserved indentation)
- ‘\r’: command not found – .bashrc / .bash_profile [duplicate]
- Bash script and /bin/bash^M: bad interpreter: No such file or directory
- An “and” operator for an “if” statement in Bash
- ‘\r’: command not found – .bashrc / .bash_profile [duplicate]
- 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
- Echo newline in Bash prints literal \n
- How can I use “:” as an AWK field separator?
- An “and” operator for an “if” statement in Bash
- “while :” vs. “while true” [duplicate]
- “sed” command in bash
- How can I declare and use Boolean variables in a shell script?
- 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?
- Parsing JSON with Unix tools
- mvn command not found in OSX Mavrerick
- Explaining the ‘find -mtime’ command
- Bash scripting missing ‘]’
- Cannot use mkdir in home directory: permission denied (Linux Lubuntu)
- How to remove double-quotes in jq output for parsing json files in bash?
- Return value in a Bash function
- 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?
- How to change the output color of echo in Linux
- Which characters need to be escaped when using Bash?
- Recursively find all files that match a certain pattern
- How to remove the quotes when reading a variable in jq in shell?
- 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
- BASH Syntax error near unexpected token ‘done’
- Shell: How to call one shell script from another shell script?
- bash assign default value
- What does -z mean in Bash?
- mvn command not found in OSX Mavrerick
- How can I match a string with a regex in Bash?
- 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
- Simple logical operators in Bash
- Bash if statement with multiple conditions throws an error
- Open an .html file with default browser using Bash on Mac
- Laravel PHP Command Not Found
- Getting an “ambiguous redirect” error
- Bash syntax error: unexpected end of file
- Create timestamp variable in bash script
- How to convert a string to lower case in Bash?
- Binary Data Posting with curl
- -bash: export: `=’: not a valid identifier
- How to modify a global variable within a function in bash?
- How do I automatically restart a Minecraft Spigot server in the event of a crash or /stop when using screen?
- psql: command not found Mac
- 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
- How do I add a newline using printf?
- zip error – Nothing to do
- How to remove last n characters from a string in Bash?
- Meaning of “[: too many arguments” error from if [] (square brackets)
- Why does cURL return error “(23) Failed writing body”?
- How to split one string into multiple strings separated by at least one space in bash shell?
- “Error installing rails” because “extconf.rb failed” on Ubuntu 18.04
- “find: paths must precede expression:” How do I specify a recursive search that also finds files in the current directory?
- Make a Bash alias that takes a parameter?
- Copy multiple files from one directory to another from Linux shell
- How to ssh from within a bash script?
- curl: no URL specified for restful api
- Running bash script from within python
- bash : cd : too many arguments
- Bash mkdir and subfolders
- How to open Emacs inside Bash
- Integer expression expected error in shell script
- How to determine if a bash variable is empty?
- How do I get the current Unix time in milliseconds in Bash?
- Check if array is empty in Bash
- Run an interactive bash subshell with initial commands without returning to the (“super”) shell immediately
- What does passing the -xe parameters to /bin/bash do