Jump to content

Need batch script to edit file


Recommended Posts

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.

Regards

Bapu

Link to comment
Share on other sites


If you want :

file1:


monitor oid memInUseCapacity.0 601 0x00300300 300 absolute > 95 '#3-Low Memory' ''

to become

file2:


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 by allen2
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...