“npm ejecutar shell script” Código de respuesta

npm ejecutar shell script

// Step 1 - Permissions
$ chmod u+x ./cmd1.sh
// Step 2 - Shebang (top of file cmd1.sh)
$ #!/usr/bin/env bash
// Step 3 - Config
"scripts": {
  "cmd1": "bash ./cmd1.sh"
}
// Step 4 - Run
$ yarn/npm run cmd1
GitPaulo

Cómo ejecutar el script de shell

include 
#!/bin/bash (1st line inside yourfile.sh)

to run
./yourfile.sh

if you do not include that line
bash yourfile.sh
Hutch Polecat

Cómo ejecutar el script de shell

bash yourfile.sh
Hutch Polecat

Respuestas similares a “npm ejecutar shell script”

Preguntas similares a “npm ejecutar shell script”

Más respuestas relacionadas con “npm ejecutar shell script” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código