feae73d996
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/nkf#58585b26921ee612de429601982d7c87b627f51a
19 lines
176 B
Bash
19 lines
176 B
Bash
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
q="テスト"
|
|
res=$(echo $q | nkf -W -e | nkf -w -E)
|
|
ret=1
|
|
|
|
if [ x$q = x$res ]; then
|
|
ret=0
|
|
mes="PASS"
|
|
else
|
|
ret=1
|
|
mes="FAIL"
|
|
fi
|
|
|
|
echo $mes
|
|
exit $ret
|