To match regexes you need to use the =~
operator.
Try this:
[[ sed-4.2.2.tar.bz2 =~ tar.bz2$ ]] && echo matched
Alternatively, you can use wildcards (instead of regexes) with the ==
operator:
[[ sed-4.2.2.tar.bz2 == *tar.bz2 ]] && echo matched
If portability is not a concern, I recommend using [[
instead of [
or test
as it is safer and more powerful. See What is the difference between test, [ and [[ ? for details.
Related Posts:
- How to compare strings in Bash
- How do I use a regex in a shell script?
- Multi-line string with extra space (preserved indentation)
- Multi-line string with extra space (preserved indentation)
- How to convert a string to lower case in Bash?
- How do I remove the file suffix and path portion from a path string in Bash?
- How to split one string into multiple strings separated by at least one space in bash shell?
- How do I tell if a regular file does not exist in Bash?
- Regex not operator
- How to create a file in Linux from terminal window? [closed]
- How can I exclude one word with grep?
- Extract substring in Bash
- Regex not operator
- What is the preferred Bash shebang?
- Read a file line by line assigning the value to a variable
- What does export PS1=”\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]\$ ” mean in MacOS’ bash Terminal?
- In the shell, what does ” 2>&1 ” mean?
- How to grep for case insensitive string in a file?
- Difference between wait and sleep
- grep –ignore-case –only
- How do I execute a bash script in Terminal?
- -bash: syntax error near unexpected token `newline’
- ‘\r’: command not found – .bashrc / .bash_profile [duplicate]
- How to find all occurrences of a substring?
- Split string on whitespace in Python
- Echo newline in Bash prints literal \n
- How can I declare and use Boolean variables in a shell script?
- How to reload .bashrc settings without logging out and back in again?
- how to replace quotation marks with \”
- Remove all special characters, punctuation and spaces from string
- This can be done without regex:
- How can I declare and use Boolean variables in a shell script?
- Replace one substring for another string in shell script
- Parsing JSON with Unix tools
- Regex how to match an optional character
- Using Bash regex match (=~) where regex includes quotes (” characters)
- “[ ]” vs. “[[ ]]” in Bash shell
- Cannot use mkdir in home directory: permission denied (Linux Lubuntu)
- How do I compare two string variables in an ‘if’ statement in Bash?
- Using find command in bash script
- How to trim whitespace from a Bash variable?
- How can I remove punctuation from input text in Java?
- Using the star sign in grep
- Is bash a programming language?
- Emulating a do-while loop in Bash
- Pass variable from one Jenkins stage to others in sh
- How to change the output color of echo in Linux
- How can I remove punctuation from input text in Java?
- What is cp: cannot stat error in Unix, I get this error when trying to copy thing from one folder to another
- bash assign default value
- What does -z mean in Bash?
- find: missing argument to -exec
- Grep ‘binary file matches’. How to get normal grep output?
- Simple logical operators in Bash
- Bash if statement with multiple conditions throws an error
- How to check if an environment variable exists and get its value?
- Laravel PHP Command Not Found
- bash : Bad Substitution
- Getting an “ambiguous redirect” error
- Bash syntax error: unexpected end of file
- Bash syntax error: unexpected end of file
- Binary Data Posting with curl
- Difference between return and exit in Bash functions
- How to modify a global variable within a function in bash?
- choosing between $0 and BASH_SOURCE
- How do I automatically restart a Minecraft Spigot server in the event of a crash or /stop when using screen?
- Create a new file in git bash
- RE error: illegal byte sequence on Mac OS X
- Fast ping sweep in python
- Regular Expressions on Punctuation
- How to extract a substring using regex
- Using SED with wildcard
- How can I check if a program exists from a Bash script?
- Bash command to sum a column of numbers
- Associative arrays in Shell scripts
- How to use regex in String.contains() method in Java
- Is there anything in Zsh like .bash_profile?
- Running programs in parallel using xargs
- “Error installing rails” because “extconf.rb failed” on Ubuntu 18.04
- Linux find and grep command together
- How to output a multiline string in Bash?
- Shell script not running, command not found
- How to ssh from within a bash script?
- How to count string occurrence in string?
- Using strip() to clean up a string
- bash : cd : too many arguments
- Bash mkdir and subfolders
- Bash mkdir and subfolders
- Linux Bash: Move multiple different files into same directory
- Extract filename and extension in Bash
- Difference between sh and Bash
- What is a simple explanation for how pipes work in Bash?
- Regex empty string or email
- Error handling in Bash
- Integer expression expected error in shell script
- Timeout a command in bash without unnecessary delay
- Error when using ‘sed’ with ‘find’ command on OS X: “invalid command code .”
- Check if array is empty in Bash
- Run an interactive bash subshell with initial commands without returning to the (“super”) shell immediately
- Clean way to write complex multi-line string to a variable