请问Tornado下一些命令行程序如何使用?

这些都是GNU的工具,非常有用,建议大家都能掌握它。
-----------------------------------
NAME 
objdump - display information from object files. 

SYNOPSIS 

objdump 
[-a|--archive-headers] [-b bfdname | --target= bfdname ] [-C|--demangle] [--debugging] [-d|--disassemble] [-D|--disassemble-all] [--disassemble-zeroes] [-EB|-EL|--endian= {big|little} ] [-f|--file-headers] [-h|--section-headers | --headers] [-i|--info] [-j section | --section= section ] [-l|--line-numbers] [-m machine | --architecture= machine ] [--prefix-addresses] [-r|--reloc] [-R|--dynamic-reloc] [-s|--full-contents] [-S|--source] [--[no-]show-raw-insn] [--stabs] [-t|--syms] [-T|--dynamic-syms] [-x|--all-headers] [--start-address= address ] [--stop-address= address ] [--adjust-vma= offset ] [--version] [--help] objfile ... 
DESCRIPTION 
objdump displays information about one or more object files. The options control what particular information to display. This information is mostly useful to programmers who are working on the compilation tools, as opposed to programmers who just want their program to compile and work. 

objfile... are the object files to be examined. When you specify archives, 

objdump shows information on each of the member object files. 


OPTIONS 
Where long and short forms of an option are shown together, they are equivalent. At least one option besides -l (--line-numbers) must be given. 


-a 
--archive-headers 
If any files from objfile are archives, display the archive header information (in a format similar to `ls -l '). Besides the information you could list with `ar tv ', `objdump -a ' shows the object file format of each archive member. 

--adjust-vma=offset 
When dumping information, first add offset to all the section addresses. This is useful if the section addresses do not correspond to the symbol table, which can happen when putting sections at particular addresses when using a format which can not represent section addresses, such as a.out. 

-b bfdname 
--target=bfdname 
Specify the object-code format for the object files to be 
bfdname . This may not be necessary; objdump can automatically recognize many formats. For example, 


objdump -b oasys -m vax -h fu.o 


display summary information from the section headers (`-h ') of `fu.o ', which is explicitly identified (`-m ') as a Vax object file in the format produced by Oasys compilers. You can list the formats available with the `-i ' option. 

-C 
--demangle 
Decode (demangle) low-level symbol names into user-level names. Besides removing any initial underscore prepended by the system, this makes C++ function names readable. 

--debugging 
Display debugging information. This attempts to parse debugging information stored in the file and print it out using a C like syntax. Only certain types of debugging information have been implemented. 

-d 
--disassemble 
Display the assembler mnemonics for the machine instructions from objfile . This option only disassembles those sections which are expected to contain instructions. 

-D 
--disassemble-all 
Like -d, but disassemble the contents of all sections, not just those expected to contain instructions. 

--prefix-addresses 
When disassembling, print the complete address on each line. This is the older disassembly format. 

--disassemble-zeroes 
Normally the disassembly output will skip blocks of zeroes. This option directs the disassembler to disassemble those blocks, just like any other data. 

-EB 
-EL 
--endian={big|little} 
Specify the endianness of the object files. This only affects disassembly. This can be useful when disassembling a file format which does not describe endianness information, such as S-records. 

-f 
--file-headers 
Display summary information from the overall header of each file in objfile . 

-h 
--section-headers 
--headers 
Display summary information from the section headers of the object file. 

--help 
Print a summary of the options to objdump and exit. 

-i 
--info 
Display a list showing all architectures and object formats available for specification with -b or -m . 

-j name 
--section=name 
Display information only for section name . 

-l 
--line-numbers 
Label the display (using debugging information) with the filename and source line numbers corresponding to the object code shown. Only useful with -d, -D, or -r. 

-m machine 
--architecture=machine 
Specify the architecture to use when disassembling object files. This can be useful when disassembling object files which do not describe architecture information, such as S-records. You can list the available architectures with the -i option. 

-r 
--reloc 
Print the relocation entries of the file. If used with -d or -d, the relocations are printed interspersed with the disassembly. 

-R 
--dynamic-reloc 
Print the dynamic relocation entries of the file. This is only meaningful for dynamic objects, such as certain types of shared libraries. 

-s 
--full-contents 
Display the full contents of any sections requested. 

-S 
--source 
Display source code intermixed with disassembly, if possible. Implies -d. 

--show-raw-insn 
When disassembling instructions, print the instruction in hex as well as in symbolic form. This is the default except when --prefix-addresses is used. 

--no-show-raw-insn 
When disassembling instructions, do not print the instruction bytes. This is the default when --prefix-addresses is used. 

--stabs 
Display the contents of the .stab, .stab.index, and .stab.excl sections from an ELF file. This is only useful on systems (such as Solaris 2.0) in which .stab debugging symbol-table entries are carried in an ELF section. In most other file formats, debugging symbol-table entries are interleaved with linkage symbols, and are visible in the --syms output. 

--start-address=address 
Start displaying data at the specified address. This affects the output of the -d , -r and -s options. 

--stop-address=address 
Stop displaying data at the specified address. This affects the output of the -d , -r and -s options. 

-t 
--syms 
Symbol Table. Print the symbol table entries of the file. This is similar to the information provided by the `nm ' program. 

-T 
--dynamic-syms 
Dynamic Symbol Table. Print the dynamic symbol table entries of the file. This is only meaningful for dynamic objects, such as certain types of shared libraries. This is similar to the information provided by the `nm ' program when given the -D (--dynamic) option. 

--version 
Print the version number of objdump and exit. 

-x 
--all-headers 
Display all available header information, including the symbol table and relocation entries. Using `-x ' is equivalent to specifying all of `-a -f -h -r -t '. 
-----------------------------------
ar用法:  
      ar命令可以用来创建、修改库,可以从库中取出单个模块.

ar命令的格式:
ar [-]{dmpqrtx}[abcfilNoPsSuvV] [membername] [count] archive files...
       d:从库中删除模块。
       m:在一个库中移动成员。
       p:显示库中指定的成员到标准输出。
       q:快速追加。增加新模块到库的结尾处。
       r:在库中插入模块(或者替换一存在同名模块)。 
       t:显示库的模块表清单。 
       x:从库中提取一个成员。 

       a:在库中已经存在的成员后面增加一个新的文件。
       b:在库中已经存在的成员前面增加一个新的文件。
       c:创建一个库。
       f:在库中截短指定的名字。 
       i:在库中已经存在的成员前面增加一个新的文件(类似任选项b)。 
       l:暂未使用 
      N:与count参数一起使用,在库中有多个相同的文件名时,指定提取或输出多个相同的文件名的个数。 
      o:当提取成员时,保留成员的原始数据。
      P:进行文件名匹配时使用全路径名。
      s:写入一个目标文件索引到库中,或者更新一个存在的目标文件索引。
      S:不创建目标文件索引。 
      u:该任选项只用于r操作选项,列出文件中那些比库中同名文件新的文件。 
      v:该选项用来显示执行操作选项的附加信息。 
      V:显示ar的版本

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值