下载msysgit,安装官方下载:http://code.google.com/p/msysgit/downloads/list,打开Git Bash,运行命令cd D:git clone https://android.googlesource.com/platform/manifest.git输...
分类:
移动开发 时间:
2014-07-16 18:19:14
阅读次数:
368
当Linux 进行查找时,对某些目录的访问可能没有权限而无法进行访问,打印出很多错误消息
1、root目录文件内容
-bash-3.2$ ls
anaconda-ks.cfg bea Desktop lib wls1036_generic.jar
2、查找.log结尾的文件,
-bash-3.2$ find . -name "*.log"
find: ./.gconfd...
分类:
系统相关 时间:
2014-07-16 17:27:01
阅读次数:
433
第五章 自定义模块
此前我们一直使用Ansible自带的模块,这已经给我们提供了很多很强的‘自带的电池’,但是如果你有一些特殊又复杂的任务,你可能会希望学习一下如何扩展Anisble。本章你将学习到以下主题:
在python或则bash中编写模块
使用你开发的自定义模块...
分类:
其他好文 时间:
2014-07-16 09:55:30
阅读次数:
375
无书面授权,请勿转载
第五章 自定义模块
Using a module
Now that we have written our very first module for Ansible, we should give it a
go in a playbook. Ansible looks at several places for its modules: first it looks ...
分类:
其他好文 时间:
2014-07-16 09:14:31
阅读次数:
376
yumremoveibusyuminstallfcitxfcitx-table-chinesefcitx-gtk2fcitx-gtk3fcitx-libsfcitx-datacd~vi.bash_profile输入以下几行exportGTK_IM_MODULE=fcitxexportQT_IM_MODULE=fcitxexportXMODIFIERS=“@im=fcitx”输入命令killallfcitx&&fcitx&查看/etc/rc.d/rc.loca..
分类:
其他好文 时间:
2014-07-15 12:05:46
阅读次数:
260
1、使用规则
awk适合于文本处理和报表生成,它还有许多精心设计的特性,允许进行需要特殊技巧程序设计。
awk
的语法较为常见。它借鉴了某些语言的一些精华部分,如C语言、python和bash。
第一个awk
让我们继续,开始使用awk,以了解其工作原理。在命令行中输入以下命令:
$awk‘..
分类:
其他好文 时间:
2014-07-15 11:39:54
阅读次数:
323
#!/bin/bash while[1]doa=$(ifconfigeth0|grep'RXpac'|awk'{print$2}'|awk-F:'{print$NF}')echo-ne"$a\r"#不换行刷新数据 doneecho参 数:-n 不要在最后自动换行 -e 若字符串中出现以下字符,则特....
分类:
其他好文 时间:
2014-07-15 09:43:48
阅读次数:
191
Bash 是brian Fox在1988年1月10号出于Richard Stallman的建议而写的。 一、 运行模板: 交互登陆的shell,登陆后bash会读取和执行/etc/profile。 然后依次读取~/.bash_profile,~/.bash_login,~/.profile,发现第一...
分类:
其他好文 时间:
2014-07-15 00:52:06
阅读次数:
280
[root@Server3Learn]#catuseradd-final.sh
#!/bin/bash
#
DEBUG=0
ADD=0
DEL=0
help(){
echo"Usage:$(basename$0)-v|--verbose|--adduser1,user2,...|--deluser1,user2,...|-h|--help"
}
while[$#-ne0]
do
case$1in
-h|--help)
help
exit0
;;
-v|--verbose)
DEBUG=1
shi..
分类:
其他好文 时间:
2014-07-14 16:25:52
阅读次数:
230
请注意:为什么实例用户和实例名需要相同?创建实例命令中,并没有实例用户的选项,但是系统却通过实例名找到该用户,并在/home下的相关目录里建立了实例文件夹和文件(sqllib)。-bash-3.2# cd instance 在instance目录下-bash-3.2# ./db2icrt -u te...
分类:
其他好文 时间:
2014-07-14 15:37:25
阅读次数:
236