The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 10-27-2006
pressy's Avatar
pressy pressy is offline Forum Staff  
solaris cultist
  
 

Join Date: Aug 2003
Location: Vienna / Austria (Europe) [EARTH]
Posts: 726
could be something like this:


Code:
root@mp-wst01 # echo "1" > file1_20_1
root@mp-wst01 # echo "2" > file1_20_2
root@mp-wst01 # for x in file1_20_* ; do cat $x >> target; done
root@mp-wst01 # more target
1
2
root@mp-wst01 #

regards pressy