internal shell variable $IFS (Internal Field Separator).
Its defaults to whitespace, tab and new line.
e.g.)
$ EXAMPLE=" a b c "
$ echo $EXAMPLE
a b c
$
in bash script, we can just specify the 'IFS' as follows to preserve the whitespace
$ IFS='%'
WRITTEN BY
- RootFriend
개인적으로... 나쁜 기억력에 도움되라고 만들게되었습니다.
,