使用Windows批处理命令在.txt文件中添加变量

iaqfqrcu  于 2022-11-18  发布在  Windows
关注(0)|答案(1)|浏览(228)

在Jenkins的Windows批处理命令。我真的需要关键,值环境Jenkins,因为我不想分享我的重要信息的Github。我必须得到他们在Jenkins
我试过用这个装Windows,但是不起作用。

@echo off
(echo token= sample && echo header = https://sample.com && echo baseURI = www.sample.com && echo browser = Chrome && echo environment =MobileWeb)>src/main/resources/Global.properties

这是给Mac的,它正在工作

echo '
    #Edit this section, if need be 
    token = sample......
    header = https://sample
    baseURI = \sample.com/
    browser = Chrome
    environment =MobileWeb
      '>src/main/resources/Global.properties

请帮我找Windows。

x6h2sr28

x6h2sr281#

很干脆:

@(
    echo #Edit this section, if need be
    echo token = sample
    echo header = https://sample.com
    echo baseURI = www.sample.com
    echo browser = Chrome
    echo environment = MobileWeb
) 1>"src\main\resources\Global.properties"

相关问题