Created
December 22, 2011 20:33
-
-
Save djangofan/1511742 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO off | |
SETLOCAL ENABLEDELAYEDEXPANSION | |
SET XMLFILE=plugins.xml | |
SET XMLBASE=//Config/Plugin | |
xmlstarlet.exe sel -t^ | |
-c ^"%XMLBASE%/Instance/Project[@name='myapp']/DEBUG^" --nl^ | |
-c ^"%XMLBASE%/Instance/Project[@name='myapp']/Company^" --nl^ | |
-c ^"%XMLBASE%/Instance/Project[@name='myapp']/SaveOffline^" --nl^ | |
-c ^"%XMLBASE%/Instance/Project[@name='myapp']/Client^" --nl^ | |
-c ^"%XMLBASE%/Instance/Project[@name='myapp']/GPSDiscoverPort^" --nl^ | |
-c ^"%XMLBASE%/Instance/Project[@name='myapp']/GPSEnabled^" --nl^ | |
-c ^"%XMLBASE%/Instance/Project[@name='myapp']/AgencyName^" --nl^ | |
-n %XMLFILE% | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment