- 已关闭**。此问题需要details or clarity。当前不接受答案。
- 想要改进此问题吗?**通过editing this post添加详细信息并阐明问题。
18小时前关门了。
Improve this question
我尝试使用sed搜索并删除第二行到最后一行的逗号,
。
这就是我现在所拥有的:
}
"user-account-id": "John",
"user-account-number": "v1001",
"user-account-app": "v10.0.0",
"user-account-dbase": "v10.1.0",
}
我希望最终的结果是这样的:
}
"user-account-id": "John",
"user-account-number": "v1001",
"user-account-app": "v10.0.0",
"user-account-dbase": "v10.1.0"
}
1条答案
按热度按时间0sgqnhkj1#
自己找到了答案!
试运行:
实际移除:
$
表示文件中的最后一行。sed
命令删除文件中第二行到最后一行的逗号,
。