ChinaUnix.net
相关文章推荐:

scons中Export

还没有完全搞定M5,只是发现了编译M5需要用的 scons 有点意思。 " scons is a fantastic build system, written in Python (1.5.2) that does lots of nice things like automated dependencies, cross platform operation, configuration, and other great stuff. I would have to say that it is probably going to be the best thing for building C/C++ projects in the near future." ...

by xfavorx - Linux文档专区 - 2008-03-12 18:52:59 阅读(841) 回复(0)

相关讨论

本帖最后由 whpu000625 于 2011-04-22 13:58 编辑 我有如下三个文件 # cat test.sh[code]#!/bin/bash #!/bin/bash AA="" export AA ./test2.sh echo "======test======="AA=$AA [/code]#cat test1.sh[code]#!/bin/bash test() { AA="aaaa" } [/code]#cat test2.sh[code]#!/bin/sh . ./test1.sh test echo "=======test2======" AA=$AA [/code]test.sh定义export出环境变量AA。 test1.sh定义函数test用于改变AA的值,...

by whpu000625 - Shell - 2011-04-23 18:04:12 阅读(8644) 回复(12)

环境:ubuntu 10.04 bash 当我在控制台使用export -f 声明全局函数时是可以的,如下:[code]#ftest() { echo "Hello $LOGNAME";} #export -f ftest #bash #ftest Hello root[/code]当我试图在脚本里面使用export -f 时就会出错,如下test.sh:[code]#!/bin/sh ftest() { echo "Hello $LOGNAME" } export -f ftest ./test2.sh[/code]如下test2.sh:[code]#!/bin/sh ftest[/code]当我运行:./test.sh 的时候报错: export: ...

by ggmove - Shell - 2012-09-25 16:59:51 阅读(2614) 回复(4)

export_SYMBOL标签内定义的函数或者符号对全部内核代码公开,不用修改内核代码就可以在您的内核模块直接调用,即使用export_SYMBOL可以将一个函数以符号的方式导出给其他模块使用。您还可以手工修改内核源代码来导出另外的函数,用于重新编译并加载新内核后的测试。 Linux symbol export method: [1] If we want export the symbol in a module, just use the export_SYMBOL(xxxx) in the C or H file. And compile the...

by seby011 - Linux文档专区 - 2009-11-03 21:17:00 阅读(1134) 回复(0)

.profile是用户登陆时生效的。里面的变量加export 和不加export修饰感觉没却别 在该用户下都可以使用。 请问有什么区别吗?export在什么情况下有作用呢??

by gaozhongshan - C/C++ - 2009-08-19 15:07:31 阅读(2382) 回复(2)

export_SYMBOL标签内定义的函数或者符号对全部内核代码公开,不用修改内核代码就可以在您的内核模块直接调用,即使用export_SYMBOL可以将一个函数以符号的方式导出给其他模块使用。您还可以手工修改内核源代码来导出另外的函数,用于重新编译并加载新内核后的测试。 Linux symbol export method: [1] If we want export the symbol in a module, just use the export_SYMBOL(xxxx) in the C or H file. And compile the mod...

by wxju168 - Linux文档专区 - 2009-07-18 21:12:00 阅读(776) 回复(0)

在使用fltk的朋友们,谁能给我讲讲Fl_export是干嘛的? 在2。0版本怎么就没有这个类和头文件了? [ 本帖最后由 betterbetter 于 2007-6-20 14:55 编辑 ]

by betterbetter - Linux环境编程 - 2007-06-20 14:11:41 阅读(1400) 回复(0)

我想在c程序调用export命令,把一个表的数据备份起来 应该怎么做呢,请各位指教

by elegant - DB2 - 2009-09-01 22:01:43 阅读(3522) 回复(4)

在procedure如何使用export指令,谢谢!!

by huyuhui001 - DB2 - 2004-11-01 17:43:56 阅读(1364) 回复(2)

vm虚拟机安装centos5.5系统。按照网上说的开机自动启动tomcat的方法,修改rc.local文件: #!/bin/sh # # This script will be executed *after* all the other init scripts. # You can put your own initialization stuff in here if you don't # want to do the full Sys V style init stuff. touch /var/lock/subsys/local export JAVA_HOME=/usr/java/jdk1.5.0_04 export PATH=$JAVA_HOME/bin:$PATH export CLASSPATH=...

by zaneleee - Linux系统管理 - 2011-03-22 16:13:32 阅读(5131) 回复(5)

[color="#000000"]export_SYMBOL标签内定义的函数或者符号对全部内核代码公开,不用修改内核代码就可以在您的内核模块直接调用,即使用[color="#000000"]export_SYMBOL可以将一个函数以符号的方式导出给其他模块使用[color="#000000"]。您还可以手工修改内核源代码来导出另外的函数,用于重新编译并加载新内核后的测试。 Linux symbol export method: [1] If we want export the symbol in a module, just use the [color="#8000...

by g84ch - Linux文档专区 - 2009-09-07 10:23:27 阅读(987) 回复(0)