“Crear script de shell” Código de respuesta

Cómo crear un script bash

#!/bin/bash

echo "Hello, world!"
Cooperative Cassowary

Crear script de shell

Let us understand the steps in creating a Shell Script:
1. Create a file using a vi editor(or any other editor). Name script file with extension . sh.
2. Start the script with #! /bin/sh.
3. Write some code.
4. Save the script file as filename.sh.
5. For executing the script type bash filename.sh.
ilan melki

Cómo crear un script bash

echo '#!bin/bash' > filename 
# works with and without extention, if you want extention do filename.sh
chmod +x filename
Jos

Respuestas similares a “Crear script de shell”

Preguntas similares a “Crear script de shell”

Más respuestas relacionadas con “Crear script de shell” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código