如何从 shell 变量中获取最新单词而不循环遍历所有单词?
我想从字符串变量中获取两个最新的单词。 字符串变量中的单词总数不是恒定的。
这就是我尝试的:
LIST=`some command`
LATEST1=""
LATEST2=""
for ITEM in $LIST
do
LATEST2="$LATEST1"
LATEST1="$ITEM"
done
echo "Latest: $LATEST1"
echo "2nd latest: $LATEST2"
但速度很慢。有没有更好的办法呢?
使用busybox的sh shell。其他脚本语言不可用。
I want to get two latest words from a string variable.
Total number of words in the string variable is not constant.
This is what I try:
LIST=`some command`
LATEST1=""
LATEST2=""
for ITEM in $LIST
do
LATEST2="$LATEST1"
LATEST1="$ITEM"
done
echo "Latest: $LATEST1"
echo "2nd latest: $LATEST2"
But it is slow. Is there any better way to do it?
sh shell of busybox is used. Other scripting languages are not available.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以只使用参数替换:
You can just use parameter substitution:
正则表达式将匹配最后 2 个单词(在本例中包括空格)
Regex which will match the last 2 words (including whitespaces in this case)
您可以使用如下的纯 shell 方式来完成此操作:
这通过将包含字符串的变量分配到数组中,然后通过键访问它来实现。
You can do this in a purely shell way using something like this:
This works by assigning the variable containing the strings into an array and then accessing it by key.