strip

strip是Linux下的一个命令。可以用于给应用脱衣服,帮助我们抹除一些调试信息。(虽然不知道具体是什么,但是会用就好了

在嵌入式开发领域用到的应该比较多

首先,先写一个示例看看

  1. //hello.cpp
  2. #include <iostream>
  3. using namespace std;
  4. int main() {
  5. int i = 10;
  6. for(;i > 0;i--) {
  7. cout<<"hello,i = "<<(10 - i)<<endl;
  8. }
  9. return 0;
  10. }

好了,编译一下,看下大小

  1. $ g++ hello.cpp -o hello.out
  2. $ ls -l
  3. total 16
  4. -rw-r--r-- 1 root root 171 Jul 12 3:00 hello.cpp
  5. -rwxr-xr-x 1 root root 8968 Jul 12 3:00 hello.out
  6. $

我们可以看到大小是8k左右,那么我们来strip看下

  1. $ strip hello.out -o hello.strip.out
  2. $ ls -l
  3. total 24
  4. -rw-r--r-- 1 root root 171 Jul 12 3:00 hello.cpp
  5. -rwxr-xr-x 1 root root 8968 Jul 12 3:00 hello.out
  6. -rwxr-xr-x 1 root root 6120 Jul 12 3:10 hello.strip.out
  7. $

很好,我们可以看到文件明显减少了许多,现在是一个6k左右的文件

6120÷8968≈0.6824=68.24%

1-68.24%=31.76%

减少了大概31.76%

嗯... 应该是加的库越多可以减少的越多吧。

那么我们来看看能不能正常运行

  1. $ ./hello.strip.out
  2. hello,i = 0
  3. hello,i = 1
  4. hello,i = 2
  5. hello,i = 3
  6. hello,i = 4
  7. hello,i = 5
  8. hello,i = 6
  9. hello,i = 7
  10. hello,i = 8
  11. hello,i = 9
  12. $

我们看下strip都有那些用法。

  1. $ strip --help
  2. Usage: strip <option(s)> in-file(s)
  3. Removes symbols and sections from files
  4. The options are:
  5. -I --input-target=<bfdname> Assume input file is in format <bfdname>
  6. -O --output-target=<bfdname> Create an output file in format <bfdname>
  7. -F --target=<bfdname> Set both input and output format to <bfdname>
  8. -p --preserve-dates Copy modified/access timestamps to the output
  9. -D --enable-deterministic-archives
  10. Produce deterministic output when stripping archives (default)
  11. -U --disable-deterministic-archives
  12. Disable -D behavior
  13. -R --remove-section=<name> Also remove section <name> from the output
  14. --remove-relocations <name> Remove relocations from section <name>
  15. -s Remove all symbol and relocation information
  16. -g -S -d --strip-debug Remove all debugging symbols & sections
  17. --strip-dwo Remove all DWO sections
  18. --strip-unneeded Remove all symbols not needed by relocations
  19. --only-keep-debug Strip everything but the debug information
  20. ... #此处省略

那么我们可以看到,常见的有-I和-O,也就是输入和输出啦。发现一个不对的地方,它这里的O应该是小写的,大写的O会报错

然后是 -F format,设置输入和输出文件的格式

-p 保护日期,那么这个应该是不修改原来文件的modified的日期的吧

-D 和-U 需要一起讲,D应该就是它这个deterministic的意思吧,确定性的。那么-D就是产生确定性输出,-U就是不产生确定性输出。

-R 可以删除指定的section

-s 表示可以strip-all。

后面太多了,大家可以自行琢磨

嗯,大概就这些吧。正常使用的strip filename -o output_filename 就应该完全够用。

以上就是本文的全部内容,有什么疑问欢迎来一起探讨。

那么我们来看下加了s之后的文件大小是多少

  1. $ strip hello.out -p -s -o hello.s.out
  2. $ ls -l
  3. total 32
  4. -rw-r--r-- 1 root root 171 Jul 12 3:00 hello.cpp
  5. -rwxr-xr-x 1 root root 8968 Jul 12 3:00 hello.out
  6. -rwxr-xr-x 1 root root 6120 Jul 12 3:00 hello.s.out
  7. -rwxr-xr-x 1 root root 6120 Jul 12 3:10 hello.strip.out
  8. $

哈哈,看来默认就是有-s的了

Linux下的strip命令学习的更多相关文章

  1. Linux下的upx命令学习

    upx学习 今天我们来学习一款给应用加壳的软件,叫做upx(the Ultimate Packer for eXecutables) 首先我们先看下它**百科的释义: UPX (the Ultimat ...

  2. linux下文件搜索命令学习笔记

    1. locate:按照文件名搜索文件 locate filename 与find在整个操作系统中遍历搜索不同,locate命令在/var/lib/mlocate这个后台数据库中按照文件名搜索,所以优 ...

  3. Linux下使用mail命令发送邮件

    因为需要经常备份网站的数据,所以了解并学习了下linux下如何通过shell来发送邮件,这里以CentOS为例,使用mail命令来进行外部邮件的发送.mail命令的语法如下: Usage: mail ...

  4. Linux下的Make命令实例详解

    众所周知在Linux系统下的make 命令是系统管理员和程序员用的最频繁的命令之一.管理员用它通过命令行来编译和安装很多开源的工具,程序员用它来管理他们大型复杂的项目编译问题.下面这 篇文章我们将用一 ...

  5. linux下显示dd命令的进度:

    linux下显示dd命令的进度: dd if=/dev/zero of=/tmp/zero.img bs=10M count=100000 想要查看上面的dd命令的执行进度,可以使用下面几种方法: 比 ...

  6. [转] 关于linux下通过shell命令(自动)修改用户密码

    关于linux下通过shell命令(自动)修改用户密码 2012-04-23 18:47:39 分类: 原文地址:关于linux下(自动)修改用户密码 作者:ubuntuer 本文章总结了如何手动.自 ...

  7. linux下安装7z命令及7z命令的使用

    本文主要介绍了在linux下安装7z命令的方法,同时介绍了7z命令的使用.7z压缩格式拥有众多优点,具有极高的压缩比率,如果你还不了解,请看文章:7z格式.LZMA压缩算法和7-Zip详细介绍. re ...

  8. 将linux下的rm命令改造成移动文件至回收站【转】

    转自:http://blog.csdn.net/a3470194/article/details/16863803 [-] 将linux下的rm命令改造成移动文件至回收站 将AIX下的rm命令改造成移 ...

  9. linux下常用FTP命令

    linux下常用FTP命令 1. 连接ftp服务器 1. 连接ftp服务器格式:ftp [hostname| ip-address]a)在linux命令行下输入: ftp 192.168.1.1b)服 ...

随机推荐

  1. webpack项目如何正确打包引入的自定义字体?

    一. 如何在Vue或React项目中使用自定义字体 在开发前端项目时,经常会遇到UI同事希望在项目中使用一个炫酷字体的需求.那么怎么在项目中使用自定义字体呢? 其实实现起来并不复杂,可以借用CSS3 ...

  2. Day6【Scrum 冲刺博客】

    每日会议总结 昨天已完成的工作 方晓莹(PIPIYing) 对接住户相关接口 处理token过期重定向.页面跳转.错误状态处理等内容 方子茵(Laa-L) 暂无 黄芯悦(Sheaxx) 完善物业报修页 ...

  3. es6语法糖

    ES6为一些已有的功能提供了非破坏性更新,这类新语法能做的事情其实用ES5也可以做,只是会稍微复杂一些,称之为语法糖. 对象属性的简洁表示法 声明的对象中包含若干属性,其属性值由变量表示,且变量名和属 ...

  4. redis学习之——主从复制(replication)

    准备:拥有linux环境,并安装redis mater:主机,进行写操作 slave:从机,进行读操作 一.配置 继续前边的学习.我们是拷贝redis.conf,文件到了/root /redis 下. ...

  5. 超详细!使用 LVS 实现负载均衡原理及安装配置详解---转

    负载均衡集群是 load balance 集群的简写,翻译成中文就是负载均衡集群.常用的负载均衡开源软件有nginx.lvs.haproxy,商业的硬件负载均衡设备F5.Netscale.这里主要是学 ...

  6. 【Jmeter中,保存测试结果xml时报 error loading results file -see log file 问题的处理办法】

    使用JMeter测试并发保存测试文件时报错:Error loading results file - see file log解决办法:新建一个文本文件(什么类型都可以),在文件中加上<?xml ...

  7. centos7 安装netstat命令工具

    [root@node01 yum.repos.d]# yum install -y net-tools Loaded plugins: fastestmirror Loading mirror spe ...

  8. 带宽、延时、吞吐率、PPS 这些都是啥?

    Linux 网络协议栈是根据 TCP/IP 模型来实现的,TCP/IP 模型由应用层.传输层.网络层和网络接口层,共四层组成,每一层都有各自的职责. 应用程序要发送数据包时,通常是通过 socket ...

  9. EasyExcel导入

    记录摸鱼的一天 技术栈:spring boot2.x+mybatis plus+easyExcel 2.2.6 生成简单的实体类等等等等 导入easyExcel的依赖 实体类 编写服务层 import ...

  10. wpa_supplicant 检测错误密码

    选好了 wifi ssid,填了密码,生成新配置文件,重启了wpa_supplicant,怎么知道输入的密码对不对,如果不对有什么体现? wpa_supplicant 前台运行时,打印信息中会有: W ...