The UNIX and Linux Forums
>
Special Forums
>
UNIX Desktop for Dummies Questions & Answers
append a line to the last line in a file
User Name
Remember Me?
Password
Google UNIX.COM
Forums
Portal
Register
Forum Rules
FAQ
Contribute
Members List
Arcade
Search
Today's Posts
Mark Forums Read
Thread
:
append a line to the last line in a file
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
#
5
(
permalink
)
03-28-2007
matrixmadhan
Technorati Master
Join Date: Mar 2005
Location: Large scale systems...
Posts: 2,593
Code:
awk '{ printf "\n%s", $0 }END{ printf "abcdefghijkl\n" }' filename
matrixmadhan
View Public Profile
Find all posts by matrixmadhan