会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
阮減显
上一页
1
···
7
8
9
10
11
12
13
14
15
下一页
2015年6月1日
Git使用1
摘要: 1、先配置本地Git E:\personal>git config –-global user.name "lewy" E:\personal>git config –-global user.email "lewy@gmail.com" 查看是否添加成功 E:\personal>git c...
阅读全文
posted @ 2015-06-01 15:30 阮減显
阅读(83)
评论(0)
推荐(0)
proc demo
摘要: 源文件test.pc #include #include #include #include "sqlca.h" int main() { EXEC SQL BEGIN DECLARE SECTION; char *sid = "orauser/pwd@170...
阅读全文
posted @ 2015-06-01 15:30 阮減显
阅读(121)
评论(0)
推荐(0)
cubieboard网络设置
摘要: 1.1 配置静态ip vi /etc/network/interface auto lo iface lo inet loopback #以下是添加的内如 auto eth0 #iface eth0 inet dhcp 如果自动分配的话只要加这行 iface eth0 inet stati...
阅读全文
posted @ 2015-06-01 15:29 阮減显
阅读(233)
评论(0)
推荐(0)
函数数组demo
摘要: #include #include typedef int(*service_func)(char *,char *); struct service_fun{ char *serviceName; service_func func; }; int who...
阅读全文
posted @ 2015-06-01 15:29 阮減显
阅读(68)
评论(0)
推荐(0)
cubieboard安装小记
摘要: 1.1、使用ttl线 ttl线驱动程序:PL2303_Prolific_DriverInstaller_v1.7.0.exe(驱动精灵上下载) ttl终端:http://the.earth.li/~sgtatham/putty/latest/x86/putty.exe 1.2、下载镜像到电...
阅读全文
posted @ 2015-06-01 15:29 阮減显
阅读(138)
评论(0)
推荐(0)
一个两台机子同步文件的脚本
摘要: 执行脚本例子 sh sync_prog.sh /home/liuyi/sha1/sha /home/liuyi/aaa /home/liuyi/ddd 注意:另一台机子上必须有相同的路径 #! /bin/ksh #需要同步的机子的ftp信息 FTPHOST="10.8.25...
阅读全文
posted @ 2015-06-01 15:27 阮減显
阅读(158)
评论(0)
推荐(0)
linux 动态链接库
摘要: ./main #include #include "./lib/dtlib1.h" int main() { printf("running...\n"); sayhello(); return 0; } ./makefile all:main libd...
阅读全文
posted @ 2015-06-01 15:26 阮減显
阅读(107)
评论(0)
推荐(0)
/etc/inittab加入自动启动格式
摘要: R01:35:respawn:/usr/bin/exe_program 说明 R01:标识,每一行必须唯一(R01并无特殊含义,可自定义)。 35:有效模式,3字符界面启动,5图形界面启动 respawn:固定写法 /usr/bin/exe_program:可执行程序(绝对路径) 修改...
阅读全文
posted @ 2015-06-01 15:26 阮減显
阅读(117)
评论(0)
推荐(0)
sqlldr 笔记
摘要: 表结构 CREATE table sqlloader_test ( f1 char(20), f2 char(20), f3 number(16), f4 date ); 数据文件data.csv 1,888888,900,20130508201203 1,888888,900,201305...
阅读全文
posted @ 2015-06-01 15:26 阮減显
阅读(104)
评论(0)
推荐(0)
C变参数函数demo
摘要: #include #include int sum(int a,...) { int temp = 0,sum=0,count; va_list argp; va_start(argp,a); count = a; while(count >= 0)...
阅读全文
posted @ 2015-06-01 15:25 阮減显
阅读(94)
评论(0)
推荐(0)
上一页
1
···
7
8
9
10
11
12
13
14
15
下一页
导航
博客园
首页
新随笔
联系
订阅
管理
公告