首页 > 开发 > 综合 > 正文

如何压缩可执行文件

2024-07-21 02:35:07
字体:
来源:转载
供稿:网友

  linux 下有一个类似 dos 里的 pklite 和 lzexe 的命令 -- gzexe 。而且压缩率一般都可以超过 50% ,在空间紧张时很有用。比如:
  /dosc/temp# ls -al
  total 148
  -rwxr-xr-x 1 root root 149564 Dec 8 15:33 gawk
  /dosc/temp# gzexe gawk
  gawk: 54.5%
  /dosc/temp# ls -al
  total 216
  -rwxr-xr-x 1 root root 68710 Dec 8 15:36 gawk
  -rwxr-xr-x 1 root root 149564 Dec 8 15:33 gawk~
  /dosc/temp#

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表