The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




Thread: sed question
View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #3 (permalink)  
Old 09-10-2008
ghostdog74 ghostdog74 is offline Forum Advisor  
Registered User
  
 

Join Date: Sep 2006
Posts: 2,558
bash

Code:
#set -o noglob
#string="text * text"
# echo $string
text * text
# IFS="*"
# set -- $string
# echo $1
text
 # echo $2
 text
# echo $1\\052$2
text \052 text