Bash Determine whether a Variable Contains Spaces
Jump to navigation
Jump to search
Internal
Method 1
if [[ ${a} = ${a// /} ]]; then
echo "spaces NOT found"
else
echo "spaces found"
fi