How do I install all developer tools such as GNU GCC C/C++ compilers, make and others, after installing CentOS from a shell prompt?you can following the nest line do ,install almost all development to...
分类:
系统相关 时间:
2014-06-07 01:23:47
阅读次数:
317
在调用 CMD 时,如脚本中用 WScript.Shell 调用。
如果参数中有包含空格的长路径名时,必须要加引号才能正确被识别。
是的,大家都知道要加引号,但怎么加却容易被误解。这个问题,不时地会遇上,上次弄清楚了,但隔一段时间,还是忘了,同样的问题又要重新摸索,非常痛苦。
如:
Set objShell = WScript.CreateObject("WScript...
分类:
其他好文 时间:
2014-06-05 11:54:12
阅读次数:
430
[lvhongmin@AY1401201736089361adZ start_svr]$ cat startall_svr.sh
#!/bin/bash
errpath[0]=''
errnum=0
runnum=0
curr_path=`pwd`
#进程的名字
array[${#array[*]}]=/home/lvhongmin/bin/bin....
分类:
其他好文 时间:
2014-06-05 11:11:43
阅读次数:
243
最近做LCD模组的gamma自动化测试过程中用到了input命令,于是也来了解一下该命令的使用。在运行adb shell 后输入input后运行就会输出input的使用方法,如下:
Usage: input [] [...]
The sources are:
trackball
joystick
touchnavigation...
分类:
数据库 时间:
2014-06-05 10:55:38
阅读次数:
274
强大的chrome中的插件中实现的ssh客户端...
分类:
其他好文 时间:
2014-06-05 09:19:55
阅读次数:
245
/*
二叉查找树的链表实现:
以及三种遍历方式,删除节点;
查找节点;
author:天下无双
Date:2014-5-28
Version:3.0
*/
#include
#include
typedef int T;//树内节点的数据类型
using namespace std;
class BiTree
{
private:
struct BiNode{
T data;...
分类:
其他好文 时间:
2014-06-05 09:12:12
阅读次数:
217
直接上代码:
/*
二叉树的链表实现:
以及三种遍历方式:
author:天下无双
Date:2014-5-28
Version:2.0
*/
#include
#include
typedef int T;//树内节点的数据类型
using namespace std;
class BiTree
{
private:
struct BiNode{
T data;
BiN...
分类:
其他好文 时间:
2014-06-05 06:30:49
阅读次数:
273
Oracle sqlplus报表的实现
备份数据库
非归档 :要关闭数据库
归档:
Oracle中只有date,没有datatime
sys/sorry as sysdba sys系统管理员,权限最大
show user查看当前登录数据库的用户
1.安装选择host-ONLY...
分类:
数据库 时间:
2014-06-05 06:20:26
阅读次数:
330
iOS—修改AFNetworking源文件可接收text/plain的方法
在使用AFNetworking的时候可能会碰到下面的错误:
{ status code: 200, headers {
"Content-Length" = 14;
"Content-Type" = "text/plain;charset=utf-8";
Date = "Thu, 2...
分类:
移动开发 时间:
2014-06-05 06:05:34
阅读次数:
265
----------------------------------------------------hello world-------------------------------------------
linux 创建如下文件 vim hello
#! /bin/bash //告诉Shell 使用哪个Shell 程序
#Display a line //#表示...
分类:
其他好文 时间:
2014-06-05 02:41:41
阅读次数:
393