码迷,mamicode.com
首页 >  
搜索关键字:do    ( 12356个结果
调试 shell script 方法
wade@V1088:~$ cat b.sh#!/bin/bashdir=`pwd`dir=$dir'/'for f in `ls *.png`do echo $dir$fdone看每一行代码的执行:wade@V1088:~$ bash -x b.sh++ pwd+ dir=/home/wade+....
分类:其他好文   时间:2014-08-20 02:31:46    阅读次数:237
微软职位内部推荐-Senior Speech TTS
微软近期Open的职位:Job Description:ResponsibilitiesDo you want to change the way the world interacts with computers? Do you want to be part of a team that pu...
分类:其他好文   时间:2014-08-20 02:31:05    阅读次数:318
java学习之嵌套循环
学编程吧java学习之嵌套循环发布了,欢迎大家通过xuebiancheng8.com来访问java嵌套循环主要是指在while,do...while,和for循环中可以彼此嵌套,比方说在while循环中可以嵌套do...while循环,在do...whilez红可以嵌套for循环,总之,他们之间是可...
分类:编程语言   时间:2014-08-19 23:46:25    阅读次数:231
Palindrome Number
Determine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints:Could negative integers be palindromes? (i...
分类:其他好文   时间:2014-08-19 23:42:35    阅读次数:227
ORA-00600:internal error code,arguments:[keltnfy-idmlnit],[46],[1],[],[],[],[],[]
如图:在DBCA进行到3%时,报错 因为/etc/hosts与/etc/sysconfig/network不对应,所以报错 [root@ocm2 ~]# cat /etc/hosts # Do not remove the following line, or various programs # that require network functionality will...
分类:其他好文   时间:2014-08-19 22:32:15    阅读次数:336
Reverse Linked List II
Reverse a linked list from position m to n. Do it in-place and in one-pass.For example:Given 1->2->3->4->5->NULL, m = 2 and n = 4,return 1->4->3->2->5...
分类:其他好文   时间:2014-08-19 22:08:15    阅读次数:238
rails表单控件helper
1、form加入HTML属性 {:method=>"post", :id=>"form1", :name=>"form1", :target=>"__hidden_call"}) do |f| %> { :action => "update" } %>2、link_to "issue", :acti...
分类:其他好文   时间:2014-08-19 18:54:35    阅读次数:198
js之图片变大变小效果
1、当鼠标移到图片上,图片变大;当鼠标移出图片,图片变小,效果如图: ???? ???? 2、原理不难,就是鼠标over时,设置一个定时器,让图片逐渐变大,鼠标out时同理,看下最初的简略代码你就会明白: <!DO...
分类:Web程序   时间:2014-08-19 14:45:35    阅读次数:332
Bash
每次学了忘,忘了学,怎么记不住,因为长时间不用了Bash 流程控制条件分支if [ -f $file_path ]; then #do_somethingfiif 后面跟条件如为0则进入then分支,这个和C/C++不同,因为bash主要用来根据一些命令的成功与否进行进一步的操作,命令执行成功...
分类:其他好文   时间:2014-08-19 14:22:44    阅读次数:150
vb6异步ADO操作
Private withevents M_Conn as adodb.connectionPrivate CmdFinished as booleansub somesub AdoCmd.Execute , , adAsyncExecute do while not CmdFinishe...
分类:其他好文   时间:2014-08-19 12:35:44    阅读次数:173
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!