Displaying 20 results from an estimated 40000 matches similar to: "Script interpreters and trailing options"
2012 Jan 08
2
disable interpretation of trailing slash
Hello,
This is a feature request for a command-line option to disable special
interpretation of trailing slashes on source directories. I have been
using rsync for a couple of years now (what an awesome program!) and the
meaning of the trailing slash on a source is always the one aspect of
its syntax that slows me down and makes me check and re-check the manual
to ensure that I have remembered
2014 Oct 29
0
OT: script to remove leading and trailing silence
Anybody care to share a script or snippet of what they use to remove
leading and trailing silence from customer recorded files?
I've fiddled with sox to remove the leading; reverse the file; remove the
now leading; and reverse the file again, but I'm not really happy with my
results.
--
Thanks in advance,
-------------------------------------------------------------------------
Steve
2013 Dec 10
0
[LLVMdev] lit: deprecating trailing \ in RUN lines
On Dec 8, 2013, at 4:24 AM, Alp Toker <alp at nuanti.com> wrote:
>
> On 08/12/2013 11:22, Chandler Carruth wrote:
>> On Sun, Dec 8, 2013 at 2:11 AM, Alp Toker <alp at nuanti.com> wrote:
>> I'd like to propose deprecating and shortly thereafter removing the lit test runner feature that concatenates RUN lines ending in a trailing \
>>
>> I'm
2013 Sep 24
2
Hivex - Trailing garbage at the end of hive file
[Forwarding to the proper list]
We use hivex for one of our projects and I see the following diff committed to the hivex project (source link provided) that ignores trailing garbage. But this code has been reverted to no ignore this condition in later version of hivex
- /* This error is seemingly common in uncorrupt registry files. */
- /*
- fprintf (stderr, "hivex: %s:
2005 May 22
1
R-exts.texi: nuke-trailing-whitespace has changed name (PR#7888)
Full_Name: Bj?rn-Helge Mevik
Version: 2.1.0
OS: GNU/Debian 3.0 Linux
Submission from: (NULL) (80.111.104.162)
In Appendix B R coding standards of the Writing R Extensions manual, Emacs/ESS
users are encouraged to use
(add-hook 'ess-mode-hook
(lambda ()
(ess-set-style 'C++)
;; [snip]
(add-hook 'local-write-file-hooks
2013 Dec 08
0
[LLVMdev] lit: deprecating trailing \ in RUN lines
On Sun, Dec 8, 2013 at 2:11 AM, Alp Toker <alp at nuanti.com> wrote:
> I'd like to propose deprecating and shortly thereafter removing the lit
> test runner feature that concatenates RUN lines ending in a trailing \
>
I'm really opposed to this. Especially for the Clang test suite where run
lines are often *very* long and hard to organize, read, and edit without
this
2005 Sep 01
1
R CMD BATCH on scripts without trailing newline
If the last line of an R script does not have a trailing newline, a
small errror is produced at the end of the script.
Small example. If file eg.r contains one line:
getwd()
and there is no newline after the closing paren
$ R CMD BATCH eg.r
produces an error:
$ cat eg.r.Rout
R : Copyright 2005, The R Foundation for Statistical Computing
Version 2.1.1 Patched (2005-09-01), ISBN 3-900051-07-0
2006 Jun 14
1
trailing spaces in code block
It seems that Markdown 1.0.1 strips off trailing spaces at the end of
code blocks. Is this really what it's supposed to do? There might be
reasons to include trailing spaces in code displayed on a web page --
for example, in demonstrating how to do a hard line break in markdown.
Even if the trailing spaces aren't visible, they can be cut and
pasted. Besides, Markdown 1.0.1 preserves
2010 Oct 12
0
[LLVMdev] Fixing trailing whitespace
I see a lot of commits fixing whitespace, my own included. Trailing
whitespace is very annoying and many of us have our editors setup to
remove it. This creates a problem when modifying other files that have
trailing whitespace on just about every empty line and comment. It
requires sifting through the diff and extracting the real changes.
Of course we could just disable trailing whitespace
2005 Mar 06
1
testers sought for script to interpret ELF/klibc executables
Here's a small test program to find out where a klibc executable
expects its shared library (or interpreter to be precise) to be.
It should work regardless of 32/64 bit, little- or big-endian,
but only on native executables.
If you have access to a 64-bit or big endian machine, I would
appreciate feedback on whether it produces correct answers on your
machine. To run the test, cut the
2013 Dec 10
2
[LLVMdev] lit: deprecating trailing \ in RUN lines
On Dec 10, 2013, at 1:43 PM, Caldarale, Charles R <Chuck.Caldarale at unisys.com> wrote:
>> From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu]
>> On Behalf Of Alp Toker
>> Subject: Re: [LLVMdev] lit: deprecating trailing \ in RUN lines
>
>> //\
>> int x=0;
>> int x=0;
>
>> $ gcc-4.9 -fsyntax-only f.c
>
> Try
2016 Feb 03
0
[PATCH 2/3] daemon: glob: add option for not returning dirs with trailing slash
Add a new optional bool "nodirectoryslash", to indicate that the caller
does not want trailing slashes in names of directories; this helps with
interoperability with other tools (such as rm).
Related to RHBZ#1293271.
---
daemon/glob.c | 8 ++++++--
generator/actions.ml | 17 ++++++++++++-----
gobject/Makefile.inc | 2 ++
po/POTFILES | 1 +
4 files changed, 21
2003 Apr 24
1
Trailing slash in destination
Good afternoon all,
I'm currently working on a backup script that will fetch a set of logs
from remote machines and store them on a central machine.
The command I'm using is of the form
${RSYNC} -avz root@${site}:/data/access_* ${LOG_REPOSITORY}/${site}/
Each site usually holds about 8 files with the prefix "access_". Some
machines however only have one, and this is where my
2013 Nov 05
1
Message parser loops on certain messages (e.g. with a trailing CR character)
Hi,
dovecot's message parser enters an endless loop when fed with certain
multipart messages with stray CR characters.
parse_next_body_to_boundary() assumes the '\r' might be the beginning
of a boundary line, reducing the block size by one:
src/lib-mail/message-parser.c:
404 /* no linefeeds in this block. we can just skip it. */
405 ret = 0;
406
2003 Mar 14
1
Formatting significant digits with trailing zeros
I need a function like signif(), but returns the rounded values as
character strings, formatted with trailing zeros where appropriate.
If anyone has one, I would sure appreciate a copy.
Thanks
-Don
Details:
signif() rounds a number to a specified number of significant digits,
for example:
> x <- c(2.503,2.477,0.1204)
> signif(x[1],3)
[1] 2.5
> signif(x[2],3)
[1] 2.48
2002 May 08
1
[PATCH] Strip trailing . when using HostbasedUsesNameFromPacketOnly
The following simple patch (against openssh-3.1) moves the test for a
trailing dot in the client-supplied hostname so that it is also stripped
when using the server option HostbasedUsesNameFromPacketOnly.
Please CC me on any replies, as I'm not subscribed to the list.
Cheers,
Bill Rugolsky
--- ssh/auth2.c~ Sun Feb 24 14:14:59 2002
+++ ssh/auth2.c Wed May 8 16:26:26 2002
@@ -709,15
2007 Nov 28
1
IMAP --> Creating Folders --> trailing slash
Hello List,
i use Dovecot 1.0.7 for pop and imap on Suse Linux 10.1. I need a little
help in understanding something.
If i want to create a folder with outlook express or thunderbird which can
also create subfolders, then i have to create these folders with a trailing
slash.
folders created with trailing slash are in filesystem created als real
folders, "normal" folders are
2002 Nov 08
1
Rsync Re: Trailing /
What should be the official behaviour here?
I must admit some of my scripts probably have both
trailing and non-trailing "/". But just played around
until it was mirroring into the correct directory.
Lachlan.
At 18:20 07/11/02 -0500, you wrote:
>It appears that the trailing slash in the source is being ignored:
>
>rsync -auv clam::root/usr/local/bin/ /tmp/bin
>
>ends
2013 Sep 24
0
Re: Hivex - Trailing garbage at the end of hive file
On Tue, Sep 24, 2013 at 10:14:12PM +0100, Richard W.M. Jones wrote:
> [Forwarding to the proper list]
>
> We use hivex for one of our projects and I see the following diff
> committed to the hivex project (source link provided) that ignores
> trailing garbage. But this code has been reverted to no ignore this
> condition in later version of hivex
>
> - /* This error
2020 Mar 28
0
[klibc:update-dash] dash: expand: Fix trailing newlines processing in backquote expanding
Commit-ID: 42c84c0c2ed8f5b9a81bd70582edfa9d7ead08be
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=42c84c0c2ed8f5b9a81bd70582edfa9d7ead08be
Author: Nikolai Merinov <n.merinov at inango-systems.com>
AuthorDate: Mon, 29 Apr 2019 19:13:37 +0500
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Sat, 28 Mar 2020 21:42:55 +0000
[klibc] dash: expand: