blob: ed31a7c1713605afd47a047b59a3760647799772 (
plain) (
blame)
1
2
3
4
5
6
7
|
# Test braced variable expansion in PS1
testvar=xyz123
output=$(testvar=xyz123 PS1='prefix-${testvar}-suffix:' ENV=/dev/null ${SH} +m -i </dev/null 2>&1)
case $output in
*xyz123*) exit 0 ;;
*) echo "Expected 'xyz123' in prompt output"; exit 1 ;;
esac
|