github.com/rohankumardubey/syslog-redirector-golang@v0.0.0-20140320174030-4859f03d829a/src/cmd/nm/doc.go (about) 1 // Copyright 2009 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 // +build ignore 6 7 /* 8 9 Nm is a version of the Plan 9 nm command. The original is documented at 10 11 http://plan9.bell-labs.com/magic/man2html/1/nm 12 13 It prints the name list (symbol table) for programs compiled by gc as well as the 14 Plan 9 C compiler. 15 16 This implementation adds the flag -S, which prints each symbol's size 17 in decimal after its address. 18 19 Usage: 20 go tool nm [-aghnsSTu] file 21 22 */ 23 package main