码迷,mamicode.com
首页 >  
搜索关键字:done    ( 2584个结果
What stuff has done with Magento
http://devdocs.magento.com/guides/m1x/index.html http://devdocs.magento.com/guides/m1x/install/installing_install.html http://merch.docs.magento.com/ce/user_guide/Magento_Community_Edition_User_Gui...
分类:其他好文   时间:2015-09-09 19:53:02    阅读次数:183
Oracle asm ‘du’ 命令
#!/bin/bash # #duofeachsubdirectoryinadirectoryforASM # D=$1 if[[-z$D]] then echo"Pleaseprovideadirectory!" exit1 fi (forDIRin`asmcmdls${D}` do echo${DIR}`asmcmddu${D}/${DIR}|tail-1` done)|awk-vD="$D"‘BEGIN{printf("\n\t\t%40s\n\n",D"subdirectoriessize"); ..
分类:数据库   时间:2015-09-08 15:34:58    阅读次数:535
A Swifr Tour
Tradition suggests that the first program in a new language should print the words "Hello ,world!" on the screen. In Swift , this can be done in a sin...
分类:其他好文   时间:2015-09-05 23:33:59    阅读次数:227
EPG文件数据清洗
批量文件检查? for?id?in?`seq?0?9` do ./check2.sh?epg_201506270$id.dat done for?id?in?`seq?10?23` do ./check2.sh?epg_20150627$id.dat done for?id?in?`seq?0??9` do ./filter.sh?epg...
分类:其他好文   时间:2015-09-03 19:15:16    阅读次数:368
Linux shell学习随记
awk的妙用:提取数字600,注意+号的特殊作用。echo"fuck600ms"|awk‘{print+$NF}‘结果:过滤了其他字符,只留下数字600在commad模式下使用if,for#测试ifa=200if[$a==200];thenecho"ais$a";fi##测试for循环forxin"cat""dog""pig";doecho$x;done##排除bzezt的文件,其他的输出大校..
分类:系统相关   时间:2015-09-02 19:07:24    阅读次数:215
linux for循环
一定要记得写后面的分号;http://www.runoob.com/linux/linux-shell-variable.html 这个页面的课程的循环教程是有问题的for color in yellow green white;do echo ${color}done利用循环列出某个目录...
分类:系统相关   时间:2015-09-02 17:24:52    阅读次数:198
杂记3
-(void)done:(UIButton*)btn{ if([self.delegaterespondsToSelector:@selector(setDefaultLabWithTitle:)]) { [self.delegatesetDefaultLabWithTitle:self.bt...
分类:其他好文   时间:2015-09-01 01:38:42    阅读次数:212
golang中sync和channel同步机制
sync实例: package main import ( "fmt" "sync" ) var waitgroup sync.WaitGroup func Afunction(shownum int) { fmt.Println(shownum) waitgroup.Done() //任务完成,将任务队列中的任务数量-1,其实.Done就是....
分类:其他好文   时间:2015-08-31 17:39:55    阅读次数:197
【python】socket编程常量错误问题-1 'AF_INET'错误
123456789#-*-coding:utf-8-*-importsocketprint"Creatingsocket"s=socket.socket(socket.AF_INET,socket.SOCK_STREAM)print"Done!"print"Connectingtoremotehos...
分类:编程语言   时间:2015-08-30 21:14:19    阅读次数:172
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!