码迷,mamicode.com
首页 >  
搜索关键字:tmp    ( 7796个结果
脚本检测URL
[root@gxapp01shells]#catcheck_saqz.sh#!/bin/bash#date=2014-09-06#istocheckthehttpstatus.ifitisnotOK,restarttheprogressrestart_saqz(){kill-9`ps-elf|grepjboss-saqz|grep-v"grepjboss-saqz"|awk-F‘‘‘{print$4}‘|tail-1`rm-rf/usr/local/jboss/server/jboss-saqz/tmp/*r..
分类:其他好文   时间:2014-09-16 16:05:51    阅读次数:164
fatal error: 'libxml/xmlversion.h' file not found
问题:MACOS安装scrapy时,安装lxml出现错误In file included from src/lxml/lxml.etree.c:232:/tmp/easy_install-O2UfP7/lxml-3.4.0/src/lxml/includes/etree_defs.h:14:10: ...
分类:其他好文   时间:2014-09-15 22:30:19    阅读次数:407
hive问题 could not create a validated object的解决方法
[hadoop@master hive_dat]$ hive? Logging initialized using configuration in file:/app/hive/conf/hive-log4j.properties Hive history file=/tmp/hadoop/hive_job_log_hadoop_201212181216_2004188466.txt h...
分类:其他好文   时间:2014-09-15 17:58:19    阅读次数:402
python备份目录脚本
此脚本适用于备份指定发布目录下的目录,可适当修改运用!#!/usr/bin/envpython#backupapppythonscript.importosimporttimeimportsysnowTime=time.strftime("%Y%m%d")sourcePath=‘/home/zcb/resin-4.0.10/apps/‘backupPath=‘/home/zcb/tmp/bak‘+nowTimeifnotos.path.exists(‘/h..
分类:编程语言   时间:2014-09-15 11:29:19    阅读次数:266
pthread编译时报错的解决方法
最近在学习POSIX thread编程,今天编译一个程序报如下错误:/tmp/ccXH8mJy.o:在函数‘main’中:deadlock.c:(.text+0xbb):对‘pthread_create’未定义的引用deadlock.c:(.text+0x134):对‘pthread_join’未定...
分类:其他好文   时间:2014-09-15 00:52:47    阅读次数:237
【S】SQL SERVER检查临时表占用空间情况
--检查已标记为需要删除的临时表select * from T_BAS_TEMPORARYTABLENAME;--所有系统创建的临时表及视图SELECT * FROM sys.tables WHERE name LIKE 'TMP%' -- 查看系统所有表占用的空间情况create table tm...
分类:数据库   时间:2014-09-14 08:56:46    阅读次数:362
算法练习:堆排序
C++代码 1:#include #include using namespace std;//调整堆//s:需要调整的非终端节点的位序//len:整个待排序数组的长度void HeapAdjust(int a[], int s, int len){ int tmp = a[s]; ...
分类:其他好文   时间:2014-09-13 22:38:16    阅读次数:213
python练习程序(c100经典例16)
题目:输入两个正整数m和n,求其最大公约数和最小公倍数。def foo(a,b): if a<b: (a,b)=(b,a) aa=a; bb=b; while b!=0: tmp=a%b; a=b; b=tmp; ...
分类:编程语言   时间:2014-09-13 09:21:14    阅读次数:198
python将文件写成csv文件保存到本地
举个例子:import csvimport ospath='/tmp/'file='test.csv'def generate_csv(path,file): if not os.path.exists(path): os.mkdir(path) files=os.path...
分类:编程语言   时间:2014-09-12 16:51:53    阅读次数:235
结构体用于map,set时要重载运算符<
#include#includeusing namespace std;struct P{ int entry; int time; bool operatorentry>n; set s; P tmp; for(int i = 0;i>tmp.entry; if(s.find(...
分类:其他好文   时间:2014-09-12 14:55:23    阅读次数:163
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!