Last active
October 14, 2015 00:14
-
-
Save hkuno9000/07e99a21f478d9cbcf9a to your computer and use it in GitHub Desktop.
print a environment variable separeted by ";"
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 | |
set NAME=%1 | |
if "%1"=="" set NAME=PATH | |
perl -e "print join(qq/\n/,split(q/;/,$ENV{%NAME%}));" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment