awk 和 bash 脚本
我有一个 tgz 文件,其中包含版本文件 version.txt。该文件只有一行“version=1.0.0”。此 tgz 文件存在于两个不同的目录中并且具有相同的名称。
我的要求是我需要使用 bash 脚本和 awk 来确定这两个 tgz 文件中哪一个是最新版本。即具有1.0.0 的tgz 文件的版本比具有版本1.0.1 的文件低。
I have a tgz file which contains a version file, version.txt. This file has only one line "version=1.0.0". This tgz file is present in two different directories and has the same name.
My requirement is that I need to use bash script and awk to determine which of these two tgz files is of the latest version. i.e. tgz file having 1.0.0 is of a lower version than the file having version 1.0.1.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 tar -xzvf /mnt/cf/bundle.tgz -O version.txt 提取版本。
棘手的部分是如何处理版本。如果您的版本总是三位数,那么我建议将每个部分乘以 1000。这将为您提供一个可以轻松比较的大数字。即1.0.0==1000000000; 1.0.1 = 1000000001。另一个选项是使用 %04d 格式化每个部分:0001.0000.0000 和 0001.0000.0001。可以比较这些字符串。
Use
tar -xzvf /mnt/cf/bundle.tgz -O version.txt
to extract the version.The tricky part is how to handle the version. If your version has always three digits, then I suggest to multiply each part with 1000. That will give you a large number which you can easily compare. I.e. 1.0.0 == 1000000000; 1.0.1 = 1000000001. Another option is to format each part with %04d: 0001.0000.0000 and 0001.0000.0001. These strings can be compared.
对于否决和负面评论表示歉意,但我总是对家庭作业类型的问题持怀疑态度。为了弥补,我已经替你做了。你不需要 awk,这一切都可以在 bash 中完成。
只需将 F1 和 F2 设置为正确的文件名即可。我将把它作为练习,让您接受它们作为命令行参数:)
Apologies for the downvote and the negative comment, but I'm always suspicious of homework type questions. To make amends, I've done it for you. You don't need awk, it can all be done in bash.
Just set F1 and F2 to the correct filenames. I'll leave it as an exercise for you to accept them as command line arguments :)