gpt4 book ai didi

linux - 如何使用 Shell 挑选/修剪字符串的一部分

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:26:44 28 4
gpt4 key购买 nike

我正在尝试修剪它,它存储在一个名为 $line 的变量中。

[2012-06-18 10:37:09,026 (there is a lot of text after this, i just cut it out)

我是 shell 脚本的新手,这是我的代码

errortime= $line | cut -c2-10;

它给我一个错误,从变量 $line 中提取日期的正确代码是什么。

最佳答案

你想要吗:

errortime=`echo $line | cut -c2-20`

代替?


编辑:如果您使用的是 ksh,则该行需要如下所示:

errortime=$(echo $line | cut -c2-20)

关于linux - 如何使用 Shell 挑选/修剪字符串的一部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11087496/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com