mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 21:07:57 +02:00
8 lines
186 B
Plaintext
8 lines
186 B
Plaintext
IFS=:
|
|
|
|
case A in ([[:graph:]]) echo graph;; *) echo non-graph;; esac
|
|
[[ A == [[:graph:]] ]] && echo yes || echo no
|
|
|
|
IFS="~"; read a b <<< a~q; echo $a
|
|
IFS=':'; read a b <<< a:q; echo $a
|