20230526: Cómo obtener los primeros n caracteres de una variable de entorno en Windows
- Empleando el sufijo
:~0,n
- Ejemplos:
- Cambiarse al drive correspondiente a JENKINS_HOME:
if exist %JENKINS_HOME% %JENKINS_HOME:~0,2%
- Copiar el archivo:
if exist %JENKINS_HOME%\workspace\myproject\target\MyProject-0.0.1-SNAPSHOT.war copy %JENKINS_HOME%\workspace\myproject\target\MyProject-0.0.1-SNAPSHOT.war
- Cambiarse al drive correspondiente a JENKINS_HOME:
- Referencia: Extract first character from a string