在 ruby 中以编程方式解压缩 .bin 文件
unzip .bin file programatically in ruby
我有一个 .bin,我正在尝试以编程方式解压缩。该目录是保存 the.bin 文件的临时目录。
我尝试了以下
change the permission of bin files by typing.
chmod -c 777 filenam.bin.
now run the bin file by typing
这是我有的 ruby 代码
%x(gunzip #{label_path})
使用上面的 gunzip 给我这个错误
unknown suffix -- ignored
我显示错误为非法选项c。
谁能帮忙。谢谢
gunzip
有一个选项-S
来指定要解压的文件的后缀:
gunzip -S .bin filenam.bin
以上将在同一目录中生成文件 filenam
。
我有一个 .bin,我正在尝试以编程方式解压缩。该目录是保存 the.bin 文件的临时目录。
我尝试了以下
change the permission of bin files by typing.
chmod -c 777 filenam.bin.
now run the bin file by typing
这是我有的 ruby 代码
%x(gunzip #{label_path})
使用上面的 gunzip 给我这个错误
unknown suffix -- ignored
我显示错误为非法选项c。
谁能帮忙。谢谢
gunzip
有一个选项-S
来指定要解压的文件的后缀:
gunzip -S .bin filenam.bin
以上将在同一目录中生成文件 filenam
。