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

📄 makeldpath

📁 This software aims to create an applet and panel tools to manage a wireless interface card, such as
💻
字号:
#! /bin/sh
#
# makeldpath
#
# $Id: //poco/Main/build/script/makeldpath#5 $
#
# Create a LD_LIBRARY_PATH for all project libraries.
#

if [ "$POCO_BASE" == "" ] ; then
	echo $0": POCO_BASE is not set." 
	exit 1
fi

projectList=`cat ${POCO_BASE}/components`

OSNAME=`uname`
OSARCH=`uname -m | tr " /" "_-"`

for proj in $projectList ;
do
	path=${POCO_BASE}/${proj}/lib/${OSNAME}/${OSARCH}
	echo $path
	if [ -d $path ] ; then
		echo -n ":"$path
	fi
done

⌨️ 快捷键说明

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