表示前往系统目录下去查找“ “表示在当前目录下查找pwd表示打印当前目录 ./表示当前目录 rm表示移除-I 指定某些头文件所在路径“header.h”先查找当前(用户目录),然后查找系统目录>表示吧前面的输出到后面的文件中1编译预处理(gcc -E source.c >source.E)2编译.....
分类:
其他好文 时间:
2014-09-16 00:06:09
阅读次数:
254
一、连接和关闭 1、mysql_connect('example.com:3307', 'root', '123456') --打开一个到 MySQL 服务器的非永久连接 2、mysql_pconnect(server,user,pwd,clientflag) --打开一个到 MySQL 服务器的....
分类:
数据库 时间:
2014-09-14 18:00:17
阅读次数:
375
asihttprequest 为第三方数据请求,一下为get 和post 两种请求。Get: NSString *loginName=@"Tony"; NSString *pwd=@"123"; NSString *postURL=[NSString stringWithFormat:@"htt.....
分类:
移动开发 时间:
2014-09-14 10:03:36
阅读次数:
233
默认情况下vsftp是不允许root用户登录的,可以通过修改限制来解决这个问题。首先找到vsftp的配置目录[root@localhostvsftpd]#pwd
/etc/vsftpd
[root@localhostvsftpd]#ls
chroot_listftpusersuser_listvsftpd.confvsftpd_conf_migrate.sh
[root@localhostvsftpd]#修改[root@loc..
分类:
其他好文 时间:
2014-09-12 19:24:14
阅读次数:
154
#!/bin/bashforipin`catiplist.txt`dopwd=`mkpasswd-l12-s0-C0`grep-q$ip/root/pwd.log&&passwd=$(grep$ip/root/pwd.log|cut-d:-f2)||passwd=123456expect-c"spawnsshroot@$ippasswdexpect{\"*yes/no*\"{send\"yes\r\";exp_continue}\"*password*\"{send\"$passwd\r\";..
分类:
其他好文 时间:
2014-09-11 19:33:52
阅读次数:
237
virm.sh
#!/bin/bash
##linux删除
huishou=~/.temp
(($#==0))&&{echo"Noparaments!";exit1;}
if[!-d$huishou];then
mkdir$huishou
fi
foriin$*
do
iftest-e$i
then
cd$(dirname$i)
mv-f$(basename$i)$huishou/$(find$(pwd)-maxdepth1-name$(basename$i)|tr"/""=")
cd-
..
分类:
系统相关 时间:
2014-09-11 11:22:24
阅读次数:
401
Ajax内容:$(document).ready(function () {
$(function () {
$("#submit").click(function () {
var name = $("#log").val();
var pwd = $("#pw...
分类:
Web程序 时间:
2014-09-10 15:59:20
阅读次数:
161
[http://www.tutorialspoint.com/unix/unix-shell.htm](http://www.tutorialspoint.com/unix/unix-shell.htm) 1. Linux Shell 获取脚本的所在目录的绝对路径 basedir=$(cd $(dirname $0); pwd;) echo $basedir 2....
分类:
系统相关 时间:
2014-09-10 09:44:00
阅读次数:
233
vim号称史上最好用的编辑器,学习曲线也是最陡的。找到一个很好的教程,消化一下做了点笔记。教程地址:http://coolshell.cn/articles/5426.html如果你不小心在练习时保存了文件,想知道保存在哪里,那么可以normal模式下输入 :pwd ,就可以打印出当前目录了。
分类:
其他好文 时间:
2014-09-07 11:00:44
阅读次数:
189
迁移环境源:Solaris 10 + Oracle 11.2.0.3目标:Solaris 10 + Oracle 11.2.0.1导出命令:expdp user/pwd directory=jy content=metadata_only tables=xxx,xxx,xxx exclude=sta...
分类:
其他好文 时间:
2014-09-04 23:28:40
阅读次数:
361