Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > gnu.bash.bug > #11837

Re: Paste with null delimiter

From Stephane Chazelas <stephane.chazelas@gmail.com>
Newsgroups gnu.bash.bug
Subject Re: Paste with null delimiter
Date 2015-11-04 15:44 +0000
Message-ID <mailman.1689.1446651882.7904.bug-bash@gnu.org> (permalink)
References <3a207f09-fc2b-4a2e-a6e5-1d33c7479849@googlegroups.com>

Show all headers | View raw


2015-11-03 08:29:17 -0800, julio.neves@gmail.com:
[...]
> $ paste -d "" odd even
[...]

Note that the portable and standard way to paste with no
separator is:

paste -d '\0' odd even

(no, it doesn't insert NUL characters).

not

paste -d '' odd even

which is not standard and won't work with all paste
implementations.

With traditional paste implementations:

$ paste -d '' a b
paste: no delimiters

-- 
Stephane


Back to gnu.bash.bug | Previous | NextPrevious in thread | Find similar


Thread

Paste with null delimiter julio.neves@gmail.com - 2015-11-03 08:29 -0800
  Re: Paste with null delimiter Eric Blake <eblake@redhat.com> - 2015-11-03 10:41 -0700
  Re: Paste with null delimiter Andreas Schwab <schwab@linux-m68k.org> - 2015-11-03 18:47 +0100
  Re: Paste with null delimiter Eric Blake <eblake@redhat.com> - 2015-11-03 13:32 -0700
  Re: Paste with null delimiter Eric Blake <eblake@redhat.com> - 2015-11-03 13:43 -0700
  Re: Paste with null delimiter Eric Blake <eblake@redhat.com> - 2015-11-03 13:52 -0700
  Re: Paste with null delimiter Andreas Schwab <schwab@linux-m68k.org> - 2015-11-03 22:57 +0100
  Re: Paste with null delimiter Stephane Chazelas <stephane.chazelas@gmail.com> - 2015-11-04 15:44 +0000

csiph-web