剪切以模式命名的文件中的数字
我有以下文件:
create_file_1.sql
create_file_2.sql
create_file_3.sql
create_file_4.sql
我正在循环中迭代这些文件。
现在我想获取这些文件中的数字。我想将 1
、2
、3
、... 存储在循环中的变量内。
我怎样才能实现这个目标?怎样才能把这个数字删掉呢?
PS:我想用 AIX 命令来实现这一点。
I've got the following files:
create_file_1.sql
create_file_2.sql
create_file_3.sql
create_file_4.sql
I'm iterating those files in a loop.
Now I want to get the number inside those files. I want to store the 1
, 2
, 3
, … inside a variable in the loop.
How can I achieve this? How can I cut out this number?
P. S.: I want to achieve this with an AIX command.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用
sed
:使用
bash
:使用
awk
:Using
sed
:Using
bash
:Using
awk
:嗯...这取决于您想要它的灵活性。如果您可以假设该数字是“第二个下划线和第二个下划线之后的第一个句点之间的部分”,那么您可以简单地使用:
当然,假设
$FILENAME
保存当前文件名。这使用
cut
首先获取第二个下划线之后的字符串,然后通过获取第一个句点之前的字符串来剪切它。诚然,这不使用您可能根据标签需要的正则表达式,但我发现对于像这样的简单情况,上面的内容更容易阅读。
Well ... It depends on how flexible you want it to be. If you can assume that the number is "the part between the second underscore and the first period after the second underscore", you can simply use:
assuming that
$FILENAME
holds the current filename, of course.This uses
cut
to first take the string after the second underscore, then cutting that by taking the string leading up to the first period.This, admittedly, does not use regular expressions which maybe you want based on your tags, but I find the above a bit easier to read for a simple case like this.
如果文件名中的唯一数字是您想要获取的数字,那么这也将起作用
If the only number in the file name is the one that you want to get this will also works