首先登录你的的mysql mysql -uroot -p登陆成功后出现以下信息Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 8Server version: 5.1.73-lo....
分类:
数据库 时间:
2014-08-29 19:46:48
阅读次数:
245
XXD(1) General Commands Manual XXD(1)NAME xxd - make a hexdump or do the reverse.SYNOPSIS xxd -h[elp] xxd [options] [infile [outfile]] xxd -r[evert] [...
分类:
系统相关 时间:
2014-08-27 23:16:18
阅读次数:
665
The PRODUCT_USER_PROFILE
(PUP) table provides product-level security that supplements the user-level security provided by the SQL GRANT and REVOKE commands and user roles. To create the PUP table, l...
分类:
其他好文 时间:
2014-08-26 11:48:25
阅读次数:
272
Available commands:ascii Set transfer mode to ASCIIbinary Set transfer mode to binarycd path ...
分类:
其他好文 时间:
2014-08-26 00:16:45
阅读次数:
504
转载:http://www.oschina.net/translate/useful-linux-commands-for-newbies1. ls命令ls命令是列出目录内容(List Directory Contents)的意思。运行它就是列出文件夹里的内容,可能是文件也可能是文件夹。?12345...
分类:
系统相关 时间:
2014-08-22 12:08:46
阅读次数:
304
/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/javauname -a显示系统隐藏文件。在终端(Terminal)中输入如下命令:defaults write ~/Library/Preferences/c...
分类:
其他好文 时间:
2014-08-20 19:33:42
阅读次数:
206
1. /etc/wpa_supplicant.config 內容
ctrl_interface=/var/run/wpa_supplicant
network={
ssid="ssid_namef"
psk="password"
key_mgmt=WPA-PSK
}
2. commands
wpa_supplicant ...
分类:
系统相关 时间:
2014-08-20 18:08:12
阅读次数:
305
函数可以让我们将一个复杂功能划分成若干模块,让程序结构更加清晰,代码重复利用率更高。像其他编程语言一样,Shell 也支持函数。Shell 函数必须先定义后使用。Shell 函数的定义格式如下:
[function] fun() {
list of commands
[ return value ]
}说明:
可以带function fun() 定义,也可以直接fun(...
分类:
其他好文 时间:
2014-08-20 18:05:19
阅读次数:
217
I find these commands quite helpful — maybe you know them already — if not, here you go:Microsoft Hotfix Installer (.exe)setup.exe /t:C: /cMicrosoft U...
分类:
其他好文 时间:
2014-08-15 04:01:46
阅读次数:
388
因为有 “用户上传脚本,动态运行”的需求,所以要动态地import用户上传的模块
所以写了个函数动态地import
# -*- coding: utf-8 -*-
import os
import sys
import os.path
import Queue
import commands
def test(rootDir):
#判断传入的路径下是否有“__ini...
分类:
编程语言 时间:
2014-08-14 20:52:29
阅读次数:
259