Displaying 9 results from an estimated 9 matches for "errfile".
2009 Oct 08
0
rsync+zfs rotate script
...d argument is which pool to use (ie. tank)
# fourth argument is what ZFS fileystem on that pool (ie server1/home)
# fifth argument is how many snapshots for this zfs filesystem
RMT_SERVER=$1
RMT_TARGET=$2
LCL_POOL=$3
LCL_ZFS=$4
SNAPCOUNT=$5
OUTFILE=/tmp/rsync_zfs_rotate-${LCL_POOL}-${LCL_ZFS}.log
ERRFILE=/tmp/rsync_zfs_rotate-${LCL_POOL}-${LCL_ZFS}.err
MAILER=/usr/sbin/sendmail
MAILTO=someone at domain.com
# NO EDITS BELOW THIS
###################################################
# remove any old ERRFILE/OUTFILE to start fresh
rm -f ${OUTFILE}
rm -f ${ERRFILE}
echo "" > $OUTFILE
echo...
2002 Aug 25
2
Rterm BATCH versus Splus BATCH
I have written a batch file I thought would run in R (for Windows, 1.5.1),
but as the documentation suggests, R is different in how it handles BATCH
from S-Plus (i.e. not directly equivalent to "Splus BATCH infile outfile
errfile").
If the file consists of a list of valid R commands, what's the best way of
automating it?
Many thanks.
STS
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info&quo...
2007 Oct 27
1
typo in /etc/X11/xinit/Xsession
line 15:
if ( unask 077 && cp /dev/null "$errfile" 2> /dev/null ); then
Should be umask.
--
lfr
0/0
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: not available
URL: <http://lists.centos.org/pipermail/centos/attachments/20071027/b...
2009 Mar 18
0
glusterfs bdb backend problem
...;mandatory' is deprecated, preferred is 'mandatory-locks', continuing
with
correction
2009-03-18 09:30:26 W [glusterfsd.c:451:_log_if_option_is_invalid] bdb:
option 'logdir' is not recognized
2009-03-18 09:30:26 W [glusterfsd.c:451:_log_if_option_is_invalid] bdb:
option 'errfile' is not recognized
2009-03-18 09:30:26 W [glusterfsd.c:451:_log_if_option_is_invalid] bdb:
option 'lru-limit' is not recognized
2009-03-18 09:30:26 W [glusterfsd.c:451:_log_if_option_is_invalid] bdb:
option 'checkpoint-timeout' is not recognized
2009-03-18 09:30:26 W [glusterf...
2013 Jan 07
0
aspell(..., dictionaries) incorrectly passes double-quoted arguments via shell() [and a patch]
...ds")
Error in aspell("text.txt", dictionaries = "./en_stats.rds") :
Running aspell failed with diagnostics:
The filename, directory name, or volume label syntax is incorrect.
In addition: Warning message:
In shell(sprintf("%s > %s 2> %s", command, outfile, errfile), input = input, :
'"C:\PROGRA~2\Aspell\bin\aspell.exe" -a -p
"C:\Users\hb\AppData\Local\Temp\RtmpueSaQa\aspell_personal1d1c378e3241"
< C:\Users\hb\AppData\Local\Temp\RtmpueSaQa\aspell1d1c64e663c9 >
C:\Users\hb\AppData\Local\Temp\RtmpueSaQa\xshell1d1c724c140 2>
C...
2001 Oct 07
1
FYI : FiSh connection over SSH fails : midnight commander freezing
...sh uses /dev/tty. The standard
> channels (stdout, stdin, stderr) are connected to the remote program and
> should be completely independent from the authentication. At least the
> recent versions of OpenSSH do it this way. You can do this:
>
> ssh prog <infile >outfile 2>errfile
I tried that; indeed, it is not possible to redirect SSH`s input/output sent
to /dev/tty.
On the other hand, I think it would not be necessary to make SSH accept all
input on it`s stdin, would it ? The passphrase should be sufficient.
I tried to examine the code of OpenSSH 2.3.0p1 and to insert...
2014 Jan 12
14
[Bug 10372] New: rsync 3.10 error in protocol data stream while rsync 3.0.9 runs through
https://bugzilla.samba.org/show_bug.cgi?id=10372
Summary: rsync 3.10 error in protocol data stream while rsync
3.0.9 runs through
Product: rsync
Version: 3.1.0
Platform: x64
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P5
Component: core
AssignedTo: wayned at
2013 Jul 12
14
[LLVMdev] [Proposal] Parallelize post-IPO stage.
...ode generator, and write assembly file
+ codeGenPasses.run(*Mod);
+ return false;
+}
+
+/// Optimize merged modules using various IPO passes
+bool LTOCodeGenerator::generateObjectFile(Module *Mod, const char *FN,
+ std::string &errMsg) {
+ std::string errFile;
+ tool_output_file OutFile(FN, errMsg, raw_fd_ostream::F_Binary);
+
+ if (!errFile.empty()) {
+ errMsg += errFile;
return true;
}
+ OutFile.keep();
- // Run our queue of passes all at once now, efficiently.
- passes.run(*mergedModule);
+ formatted_raw_ostream OS(OutFile.os());...
2013 Oct 15
23
[PATCH 00/21] Upgrade to Lua 5.2.2, add filesystem module and get_key binding
Hi,
This series targets automatic boot menu generation, but most of it
is the Lua upgrade, because I got tired reading deprecated API docs.
It's mostly a straightforward forward port of the earlier Syslinux
specific changes to Lua 5.1, except that:
* I chose the add a stub getenv() implementation to the COM32 API
instead of #ifdefing out all the references in Lua, and
* I kept oslib