删除特殊字符

发布于 2024-10-12 12:35:38 字数 131 浏览 1 评论 0原文

如何删除大于 <从行首开始签名 ^

file.txt
> INSERT INTO
> INSERT INTO

Expected:
INSERT INTO
INSERT INTO

How do I remove the greater than < sign from the beginning of the line ^

file.txt
> INSERT INTO
> INSERT INTO

Expected:
INSERT INTO
INSERT INTO

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

﹎☆浅夏丿初晴 2024-10-19 12:35:38

尝试一下:

sed 's/^> //' inputfile

Give this a try:

sed 's/^> //' inputfile
煞人兵器 2024-10-19 12:35:38

awk

awk '{gsub(/^[ \t]*>[ \t]*/,"")}1' file
awk '{$1=""}1' file

sed

sed 's/^[ \t]*>[ \t]*//' file

cut

cut -d" " -f2- file

或使用 shell

while read -r line; do  echo ${line##>}; done < file

awk

awk '{gsub(/^[ \t]*>[ \t]*/,"")}1' file
awk '{$1=""}1' file

sed

sed 's/^[ \t]*>[ \t]*//' file

cut

cut -d" " -f2- file

or using the shell

while read -r line; do  echo ${line##>}; done < file
我是有多爱你 2024-10-19 12:35:38
awk -F'>' '{print $2}' file.txt
awk -F'>' '{print $2}' file.txt
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文