51dev.com IT技术开发者社区

51dev.com 技术开发者社区

go 获取网址html 源码

go 获取网址html 源码

 //Sampleprogramtoshowhowtowriteasimpleversionofcurlusing//theio.Readerandio.Writerinterfacesupport.packagemainimport("fmt""io""net/http""os")//i...

linux df

linux df

 显示磁盘使用情况[hadoopuser@CNSZ443239~]$df 文件系统              1K-块  ...

linux 用户组

linux 用户组

 创建一个组users,其GID为888groupadd–g888users创建用户组groupaddfriends 删除组groupdelusers修改组名user为usersgroupmod–nuserusers 查看新添加的用户组xxx@u...

linux du

linux du

 命令参数:-a或-all  显示目录中个别文件的大小。   -b或-bytes  显示目录或文件大小时,以byte为单位。   -c或--total  除了显示个别目录...

python 移动文件夹

python 移动文件夹

 xxx@ddd:~$mkdirtestatestb>>>importshutil>>>shutil.move("/home/xxx/testa","/home/xxx/testb")>>>exit()xxx@ddd:~$lstestb...

linux ping 指定次数

linux ping 指定次数

 ping192.168.0.1-c4 ...

python os.remove

python os.remove

 remove只能删除文件,删除目录会报错>>>importos>>>os.remove("/opt/xxx/server_log/test")Traceback(mostrecentcalllast):File"<stdin>",line1...

python 删除文件夹

python 删除文件夹

 只能删除空文件夹,删除非空文件夹会报错>>>importos>>>os.rmdir("/tmp/ssh-GyoPWOFZ47")Traceback(mostrecentcalllast):File"<stdin>",line1,in<...

python 目录切换

python 目录切换

 #-*-coding:utf-8-*-importos,syspath="c:\"#查看当前工作目录retval=os.getcwd()print("当前工作目录为%s"%retval)#修改当前工作目录os.chdir(path)#查看修改后的工作目录retval=os.getcwd(...

python 拷贝文件

python 拷贝文件

 使用绝对目录:importosimportshutilshutil.copyfile("/opt/test/update.tar.gz","/opt/update.tar.gz")  ...

python 进程队列

python 进程队列

 #_*_coding:utf-8_*_frommultiprocessingimportProcess,Queueimportos,timedeff(q,n):q.put([n,'hello'])if__name__=='__main__':#此queue不是直接导入的importQue...

python 管道

python 管道

 #-*-coding:utf-8-*-frommultiprocessingimportProcess,Pipedeff(conn):conn.send([42,None,'hello'])whileTrue:print(conn.recv())if__name__=='__main__...

python 进程锁

python 进程锁

 1.#_*_coding:utf-8_*_frommultiprocessingimportProcess,Lockimportos,timedeff(l,i):#加锁l.acquire()print('hello',i)#释放锁l.release()if__name__=='__mai...

Go 结构体

Go 结构体

  1.packagemainimport"fmt"typeBooksstruct{titlestringauthorstringsubjectstringbook_idint}funcmain(){//创建一个新的结构体fmt.Println(Books{"Go语言","www...

python flask demo

python flask demo

 fromflaskimportFlask,jsonifyfromflaskimportabortfromflaskimportmake_responsefromflaskimportrequestfromflask_httpauthimportHTTPBasicAuthfromflask...