The time difference is insignificant here. It may accumulate in loops though. Calling an external command (grep
) takes more time
than using a bash builtin ([[ ... ]]
).
This will be a bit faster too: if [[ `</proc/cpuinfo` =~ vmx|svm ]]; then
---
Notes:
`</root/a_file`
is replaced with a content of a file. It should be quoted outside of [[ ... ]]: "$(</root/a_file)"
.
=~ pattern
searches for a regex pattern (unquoted) or a string (quoted).
$BASH_REMATCH
contains a matched part of a string.
... && .. && ..
works here but don't do that
;;&
in the case statement means "continue as if the pattern list had not matched".
Print 2 lines:
Code: Select all
printf "line 1\nline 2\n"
printf 'line 1\nline 2\n'
echo "line 1"
echo "line 2"
echo "line 1
line 2"
echo $'line 1\nline 2'
echo -e "line 1\nline 2"