[ast-users] Raw command substitution $()

2013-12-16 Thread Eugene Schulman (BLOOMBERG/ 120 PARK)
Hi guys, I'm looking for a method to do raw command substitution. The issue: - Need a ksh93t+ / ksh93u facillity to be able to take the literal output of a command with no substitutions or omissions, where the substitute data is less than 1kB. Target platforms are RHEL 6.4, Solaris 11 AIX

Re: [ast-users] Raw command substitution $()

2013-12-16 Thread Janis Papanagnou
@LISTS.RESEARCH.ATT.COM Subject: [ast-users] Raw command substitution $() Hi guys,I'm looking for a method to do raw command substitution. The issue:- Need a ksh93t+ / ksh93u facillity to be able to take the literal output of a command with no substitutions or omissions, where the substitute data is less than 1kB

Re: [ast-users] Raw command substitution $()

2013-12-16 Thread Eugene Schulman (BLOOMBERG/ 120 PARK)
as a separator? Then you could redefine the read separator (in the example below I used X): printf \n\n\n\n\n | IFS= read -dX FOO Date: Mon, 16 Dec 2013 21:02:01 + From: eschulm...@bloomberg.net To: AST-USERS@LISTS.RESEARCH.ATT.COM Subject: [ast-users] Raw command substitution $() Hi guys, I'm looking

Re: [ast-users] Raw command substitution $()

2013-12-16 Thread Icarus Sparry
On 12/16/2013 1:02 PM, Eugene Schulman (BLOOMBERG/ 120 PARK) wrote: Hi guys, I'm looking for a method to do raw command substitution. The issue: - Need a ksh93t+ / ksh93u facillity to be able to take the literal output of a command with no substitutions or omissions, where the substitute