]> git.ipfire.org Git - thirdparty/bash.git/blame - tests/exp3.sub
Bash-4.2 patch 14
[thirdparty/bash.git] / tests / exp3.sub
CommitLineData
495aee44
CR
1IFS=:
2
3case A in ([[:graph:]]) echo graph;; *) echo non-graph;; esac
4[[ A == [[:graph:]] ]] && echo yes || echo no
5
6IFS="~"; read a b <<< a~q; echo $a
7IFS=':'; read a b <<< a:q; echo $a