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 UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 12-16-2007
porter porter is offline
Registered User
 

Join Date: Jan 2007
Posts: 2,965
Code:
echo ra > na
echo >> na
echo ras >> na
or

Code:
cat >na <<EOF
ra

ras 
EOF
or

Code:
echo "ra

ras" >na
any cats with their skin left on?
Reply With Quote