• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Linux Script for

... make a backup first...

If you can edit the file with vi

try entering the vi command prompt using a colon( : ), then

1,$ s/^/(your word here)/

translation

from the 1st(1) line to(,) the end($) of the file, search(s/) for the beginning(^) of the line, and replace(/) with.

dont include the ('s )'s around "your word here" :0

if you're unsure of changes made, just use : q ! to quit without changes
 
using part of dravics code you might be able to do this too. without having to go into vi. i haven't tried this though so im not sure.

sed -e 's/^/(your word here)/' oldfilename > newfilename
 
Back
Top