码迷,mamicode.com
首页 >  
搜索关键字:powershell; replace    ( 9290个结果
XCode4中的文本查找和文本替换功能
1.如果是在打开的文档范围内: 查找: Command+ F 替换: Option+Command+F Replace All 是全部替换本文档范围内的字符串 Replace 是替换当前字符串 Replace & Find是边查找边替换2.如...
分类:其他好文   时间:2014-06-06 20:46:03    阅读次数:184
js页面跳转整理
js方式的页面跳转 1.window.location.href方式 2.window.navigate方式跳转 3.window.loction.replace方式实现页面跳转,注意跟第一种方式的区别 有3个jsp页面(1.aspx, 2.aspx, 3.aspx),进系统默认的是1.asp...
分类:Web程序   时间:2014-06-06 11:34:31    阅读次数:368
HDFS主要节点讲解(一)节点功能
简单明了的介绍下HDFS几个节点...
分类:其他好文   时间:2014-06-05 05:29:45    阅读次数:185
汇编优化工具
/* 汇编优化工具 使汇编代码更具可读性,并提高汇编速度 优化15000行大约需要30秒 */ import rfile.h main { name=getsl s=rfile.read_all_n(name) s=s.replace('\n','\r\n') s=s.replace('dword esp','esp') s=s.replace('dword ebp','ebp')...
分类:其他好文   时间:2014-06-04 13:44:52    阅读次数:332
Add admob advertisement for Google Play Service
Google Player Service replace GoogleAdMobAdsSdk-6.4.1, new method to add admob for android application....
分类:其他好文   时间:2014-06-03 01:49:10    阅读次数:384
Windows Server 2012 R2 WSUS-14:powershell管理WSUS
在windowsserver2012R2平台下的WSUS服务器,有很多可用的powershell管理命令,涉及到WSUS的安装、配置等等。使用powershell可以更好地加深我们对更新服务器的理解,提高我们的管理效率。同时,在脚本中心,也有很多实用的powershell管理WSUS的脚本示例。通过下图的命令可以查看..
分类:Windows程序   时间:2014-06-02 14:17:02    阅读次数:530
powershell_读取ORA错误脚本
#过滤oracle警告日志文件ORA-错误 $c=Get-ContentC:\script.txt|select-string-pattern"ora-" #判断ORA-错误存在条件 #若$c返回值为null,则输出1返回值结束循环 if($c-eq$null) { write-host"STATE_OK" $STATE_OK={return1;} $b=&$STATE_OK $b } #若$c返回值不为空,..
分类:其他好文   时间:2014-06-02 03:26:07    阅读次数:197
powershell-无法加载文件,因为在此系统中禁止执行脚本
写了一个powershell脚本测试脚本,结果执行的时候报错 $a=Get-ContentC:\script.txt|select-string-pattern"ora" if($a-eq$null) { write-host"error" } else { write-host"OK" } PSD:\>.\pshell.ps1 无法加载文件D:\pshell.ps1,因为在此系统中禁止执行脚本。有关详..
分类:其他好文   时间:2014-06-02 03:17:04    阅读次数:244
oracle 重新编译用户无效对象
oraclesys用户无效对象 selectowner,object_name ,replace(object_type,‘‘,‘‘)object_type ,to_char(created,‘yyyy-mm-dd‘)ascreated ,to_char(last_ddl_time,‘yyyy-mm-dd‘)aslast_ddl_time, status fromdba_objectswherestatus=‘INVALID‘andowner=‘SYS‘; OWNEROBJECT_NAMEO..
分类:数据库   时间:2014-06-02 03:14:26    阅读次数:405
string::replace
函数原型:string& replace (size_t pos, size_t len, const string& str);具体请查阅C++开发文档。只贴示例代码。示例代码:// replacing in a string#include #include int ...
分类:其他好文   时间:2014-05-31 18:35:32    阅读次数:202
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!