⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mkldexport.sh

📁 关系型数据库 Postgresql 6.5.2
💻 SH
字号:
#!/bin/sh## mkldexport#	create an AIX exports file from an object file## Usage:#	mkldexport objectfile [location]# where#	objectfile is the current location of the object file.#	location is the eventual (installed) location of the #		object file (if different from the current#		working directory).## /usr/local/devel/postgres-v4r2/src/tools/mkldexport/RCS/mkldexport.sh,v 1.2 1994/03/13 04:59:12 aoki Exp#CMDNAME=`basename $0`if [ -z "$1" ]; then	echo "Usage: $CMDNAME object [location]"	exit 1fiOBJNAME=`basename $1`if [ "`basename $OBJNAME`" != "`basename $OBJNAME .o`" ]; then	OBJNAME=`basename $OBJNAME .o`.sofiif [ -z "$2" ]; then	echo '#!'else	echo '#!' $2/$OBJNAMEfi/usr/ucb/nm -g $1 | \	egrep ' [TD] ' | \	sed -e 's/.* //' | \	egrep -v '\$' | \	sed -e 's/^[.]//' | \	sort | \	uniq

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -