search for: checkm

Displaying 4 results from an estimated 4 matches for "checkm".

Did you mean: check
2015 Mar 09
0
Outlook 2013/2010 nightmare #2
...You may need to mod these but I have a cron running as root to do this. Script 1 (mail_root_enforce): =----------------------------------------------------------------------------------= COMPLETE_HOME=/u/home cd ${COMPLETE_HOME} for USERHOME in * do ls -d ${USERHOME}/mail/mail? | while read CHECKME do JUST_CHECKME=`basename ${CHECKME}` if [ -d ${CHECKME} -a -L ${CHECKME} ] then #echo "${CHECKME} is ok" : else echo "${CHECKME} is _not_ ok" cd ${USERHOME}/mail rm -rf ${COMPLETE_HOME}/${CHECKME}...
2015 Mar 10
2
Outlook 2013/2010 nightmare #2
...t 1 (mail_root_enforce): >> >> =----------------------------------------------------------------------------------= >> >> COMPLETE_HOME=/u/home >> cd ${COMPLETE_HOME} >> >> for USERHOME in * >> do >> ls -d ${USERHOME}/mail/mail? | while read CHECKME >> do >> JUST_CHECKME=`basename ${CHECKME}` >> if [ -d ${CHECKME} -a -L ${CHECKME} ] >> then >> #echo "${CHECKME} is ok" >> : >> else >> echo "${CHECKME} is _not_ ok" >&...
2006 Jul 30
0
re 11. uniroot and function opposite signs warning
Nurza, Try running a while loop steping out until you have a start and finish thats the function is opposite in sign. You need a "start" and "finish" where F is + and - on either side of the loop. Graphing F might help. step<-10 checkme<-F(start)*F(finish+step) while(checkme>0){ initialstep<-initialstep*2 checkme<-F(start)*F(finish+step) } answer<-uniroot(F,low=start,up=finish+step,maxiter=100)$root Enjoy Joe Liddle tfjbl at uas.alaska.edu -------------- next part -------------- An embedded message was scrubbed...
2012 Nov 10
3
pkg-config
On Fri, Nov 09, 2012, Shao Miller wrote more as: > > Does anyone know of a clever, Linux-distribution-independent way to find out > where MinGW has its lib/ and include/ dirs? Right now, I've hard-coded the > path for Fedora 17 in the Makefiles. > # # pkg-config # CFLAGS=$(shell pkg-config --cflags uuid ) LIBS=$(shell pkg-config --libs uuid ) proofofconcept: echo PoC