在 KornShell 中对字符串进行标记
我需要在 KornShell (ksh) 中对字符串进行标记。我有以下 bash 脚本;但它似乎在 ksh 中不起作用。
脚本如下。请帮助 ksh 工作。
OLDIFS=$IFS
IFS=","
read -a array <<< "$(printf "%s" "$APPLICATION_NAMES")"
IFS=$OLDIFS
for i in "${array[@]}"
do
:
# do whatever on $i
echo "Checking status of $i"
done
I need to tokenize in string in KornShell (ksh). I have got the following script for bash; but it does not seem to work in ksh.
The script is below. Please help in making work for ksh.
OLDIFS=$IFS
IFS=","
read -a array <<< "$(printf "%s" "$APPLICATION_NAMES")"
IFS=$OLDIFS
for i in "${array[@]}"
do
:
# do whatever on $i
echo "Checking status of $i"
done
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)