bash:从填充集合中删除所有定义的字符
我正在处理包含具有以下名称的填充物集合的文件夹:
(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论