# $BSDSUniX: base/head/bin/sh/tests/parser/dollar-quote1.0 1081 2021-07-02 15:24:11Z $ set -e [ $'hi' = hi ] [ $'hi there' = 'hi there' ] [ $'\"\'\\\a\b\f\t\v' = "\"'\\$(printf "\a\b\f\t\v")" ] [ $'hi\nthere' = 'hi there' ] [ $'a\rb' = "$(printf "a\rb")" ]