ubuntu:bash:brackets
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
ubuntu:bash:brackets [2019/12/06 21:47] – peter | ubuntu:bash:brackets [2019/12/07 01:33] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Ubuntu - BASH - Brackets ====== | ||
- | |||
- | What is the difference between double and single square brackets in bash? | ||
- | |||
- | <code bash> | ||
- | [ $STRING != foo ] | ||
- | </ | ||
- | |||
- | and | ||
- | |||
- | <code bash> | ||
- | [[ $STRING != foo ]] | ||
- | </ | ||
- | |||
- | |||
- | **< | ||
- | |||
- | **< | ||
- | |||
- | Both are used to evaluate expressions. | ||
- | |||
- | **[** and **test** are available in POSIX shells. | ||
- | |||
- | **< | ||
- | |||
- | ---- | ||
- | |||
- | ===== [ ===== | ||
- | |||
- | <code bash> | ||
- | [ | ||
- | </ | ||
- | |||
- | **[** is a builtin in Bash and many other modern shells. | ||
- | |||
- | The builtin **[** is similar to **test** with the additional requirement of a closing **]**. | ||
- | |||
- | The builtins [ and test imitate the functionality /bin/[ and /bin/test along with their limitations so that scripts would be backwards compatible. | ||
- | |||
- | The original executables still exist mostly for POSIX compliance and backwards compatibility. | ||
- | |||
- | ---- | ||
- | |||
- | ==== Examples ==== | ||
- | |||
- | <code bash> | ||
- | [ " | ||
- | [ -f " | ||
- | </ | ||
- | |||
- | |||
- | ---- | ||
- | |||
- | ==== Use BASH to check [ ==== | ||
- | |||
- | Running the command: | ||
- | |||
- | <code bash> | ||
- | type [ | ||
- | </ | ||
- | |||
- | returns: | ||
- | |||
- | <code bash> | ||
- | [ is a shell builtin | ||
- | </ | ||
- | |||
- | This indicates that **[** is interpreted as a builtin by default. | ||
- | |||
- | <WRAP info> | ||
- | **NOTE: | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== [[ ===== | ||
- | |||
- | <code bash> | ||
- | [[ | ||
- | </ | ||
- | |||
- | **< | ||
- | |||
- | So < | ||
- | |||
- | Because < | ||
- | |||
- | ---- | ||
- | |||
- | ==== Example ==== | ||
- | |||
- | <code bash> | ||
- | if [[ ! -e $file ]]; then | ||
- | echo "File doesn' | ||
- | fi | ||
- | |||
- | if [[ $file0 -nt $file1 ]]; then | ||
- | printf 'file %s is newer than %s\n' " | ||
- | fi | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ==== Use BASH to check [[ ==== | ||
- | |||
- | Running the command | ||
- | |||
- | <code bash> | ||
- | type [[ | ||
- | </ | ||
- | |||
- | returns: | ||
- | |||
- | <code bash> | ||
- | [[ is a shell keyword | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE: | ||
- | </ | ||
- | |||
- | |||
- | |||
- | ---- | ||
- | |||
- | ===== Comparisons between [ and [[ ===== | ||
- | |||
- | ---- | ||
- | |||
- | Although < | ||
- | |||
- | Here is a comparison list: | ||
- | |||
- | ^Feature^new test < | ||
- | |string comparison|> | ||
- | | |<|\< (*)|< | ||
- | | |< | ||
- | | |!=|!=|< | ||
- | |integer comparison|-gt|-gt|< | ||
- | | |-lt|-lt|< | ||
- | | |-ge|-ge|< | ||
- | | |-le|-le|< | ||
- | | |-eq|-eq|< | ||
- | | |-ne|-ne|< | ||
- | |conditional evaluation|&& | ||
- | | |< | ||
- | |expression grouping|< | ||
- | echo "$var starts with img and ends with .jpg or .png"</ | ||
- | |Pattern matching|< | ||
- | |RegularExpression matching|< | ||
- | |||
- | * (*) This is an extension to the POSIX standard; some shells may have it, others may not. | ||
- | |||
- | * (**) The -a and -o operators, and ( ... ) grouping, are defined by POSIX but only for strictly limited cases, and are marked as deprecated. Use of these operators is discouraged; | ||
- | |||
- | * if [ " | ||
- | |||
- | * if [ " | ||
- | |||
- | ---- | ||
- | |||
- | Special primitives that < | ||
- | |||
- | ^Description^Primitive^Example^ | ||
- | |entry (file or directory) exists|-e|< | ||
- | |file is newer/older than other file|-nt / -ot|< | ||
- | |two files are the same|-ef|< | ||
- | |negation|!|[[ ! -u $file ]] && echo "$file is not a setuid file"</ | ||
- | |||
- | ---- | ||
- | |||
- | But there are more subtle differences. | ||
- | |||
- | * No WordSplitting or glob expansion will be done for < | ||
- | |||
- | <code bash> | ||
- | | ||
- | [[ -f $file ]] && echo "$file is a regular file" | ||
- | </ | ||
- | |||
- | will work even though < | ||
- | |||
- | | ||
- | [ -f " | ||
- | |||
- | This makes < | ||
- | |||
- | Parentheses in < | ||
- | |||
- | <code bash> | ||
- | [[ -f $file1 && ( -d $dir1 || -d $dir2 ) ]] | ||
- | [ -f " | ||
- | </ | ||
- | |||
- | As of bash 4.1, string comparisons using < or > respect the current locale when done in < | ||
- | |||
- | As a rule of thumb, [[ is used for strings and files. If you want to compare numbers, use an ArithmeticExpression, | ||
- | |||
- | <code bash> | ||
- | # Bash | ||
- | i=0 | ||
- | while (( i < 10 )); do ... | ||
- | </ | ||
- | |||
- | When should the new test command < | ||
- | |||
- | For reasons explained in the theory section below, any problem with an operator used with < | ||
ubuntu/bash/brackets.1575668855.txt.gz · Last modified: 2020/07/15 09:30 (external edit)