bapu1981 Posted September 6, 2012 Posted September 6, 2012 Hi,I need batch script to edit file and restart the service in windows.For example:monitor oid memInUseCapacity.0 601 0x00300300 300 absolute > 95 '#3-Low Memory' '' in this i want to add [MID_XXXXX].To replace :monitor oid memInUseCapacity.0 601 0x00300300 300 absolute > 95 '#3-Low Memory. [MID_XXXXX]' '' after that i want to restart one service. RegardsBapu
allen2 Posted September 6, 2012 Posted September 6, 2012 (edited) If you want :file1:monitor oid memInUseCapacity.0 601 0x00300300 300 absolute > 95 '#3-Low Memory' ''to becomefile2:monitor oid memInUseCapacity.0 601 0x00300300 300 absolute > 95 '#3-Low Memory. [MID_XXXXX]' '' You could use the mingw port of sed from the unix tools and do the following:type file1 | sed "s/'/. [MID_XXXXX]'/2" >file2 Edited September 6, 2012 by allen2
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now