bash:从填充集合中删除所有定义的字符

发布于 2025-01-11 10:24:14 字数 802 浏览 0 评论 0原文

我正在处理包含具有以下名称的填充物集合的文件夹:

(base) Glebs-MacBook-Pro:laura_2 enrico$ ls -t
structure_36_S.mol2 structure_31_R.mol2 structure_23.mol2
structure_36_R.mol2 structure_30_S.mol2 structure_22.mol2
structure_35_S.mol2 structure_30_R.mol2 structure_21.mol2
structure_35_R.mol2 structure_29_R.mol2 Structure_20R.mol2
structure_34_S.mol2 structure_28_R.mol2 Structure_19R.mol2
structure_34_R.mol2 structure_27_R.mol2 Structure_13R.mol2
structure_33_S.mol2 structure_26.mol2   +
structure_33_R.mol2 structure_25.mol2
structure_32_R.mol2 structure_24.mol2

如您所见,所有 mol2 填充物的名称中都包含一两个“”(下划线)字符。你能建议我在linux中使用一些命令来一次删除所有这些填充中的所有“”吗?我使用 find + sed:

find . -name '*.mol2' | sed 'p;s/_//' | xargs -n2 mv

但在这种情况下,我必须针对包含两个 _ 的文件两次使用它。这段代码可以修改吗?

I am working with the folder contained the ensemble of the filles with the following names:

(base) Glebs-MacBook-Pro:laura_2 enrico$ ls -t
structure_36_S.mol2 structure_31_R.mol2 structure_23.mol2
structure_36_R.mol2 structure_30_S.mol2 structure_22.mol2
structure_35_S.mol2 structure_30_R.mol2 structure_21.mol2
structure_35_R.mol2 structure_29_R.mol2 Structure_20R.mol2
structure_34_S.mol2 structure_28_R.mol2 Structure_19R.mol2
structure_34_R.mol2 structure_27_R.mol2 Structure_13R.mol2
structure_33_S.mol2 structure_26.mol2   +
structure_33_R.mol2 structure_25.mol2
structure_32_R.mol2 structure_24.mol2

as you see all of the mol2 filles contains one or two "" (under-score) characters in their names. Could you suggest me some command in linux which will remove all "" from all of those filles at one. I used find + sed:

find . -name '*.mol2' | sed 'p;s/_//' | xargs -n2 mv

but in that case I had to use it twisely for the files contained two _ . May this code be modified ?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文