Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/bash/18.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/shell/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Bash 如何在heroku proc文件中编写多行命令_Bash_Shell_Heroku_Command Line_Procfile - Fatal编程技术网

Bash 如何在heroku proc文件中编写多行命令

Bash 如何在heroku proc文件中编写多行命令,bash,shell,heroku,command-line,procfile,Bash,Shell,Heroku,Command Line,Procfile,我在heroku procfile中有一个很长的命令行,我想把它分成多行 像下面这样使用反斜杠没有帮助 程序文件: web: java -Dserver.port=$PORT\ -Djavax.net.ssl.keyStoreType=pkcs12\ -Djavax.net.ssl.keyStore=$SOAP_SSL_KEYSTORE_PATH\ -Djavax.net.ssl.keyStorePassword=$SOAP_SSL_KEYSTORE_PASSWORD\ $JAV

我在heroku procfile中有一个很长的命令行,我想把它分成多行

像下面这样使用反斜杠没有帮助

程序文件:

web: java -Dserver.port=$PORT\ 
 -Djavax.net.ssl.keyStoreType=pkcs12\ 
 -Djavax.net.ssl.keyStore=$SOAP_SSL_KEYSTORE_PATH\ 
 -Djavax.net.ssl.keyStorePassword=$SOAP_SSL_KEYSTORE_PASSWORD\ 
 $JAVA_OPTS -jar pwr-mobile-rest-api-jar/target/pwr-mobile-rest-api-jar-runnable.jar
如何格式化procfile以获得更好的外观