“función en shell script” Código de respuesta

Ejemplo de función de shell

#!/bin/sh

# Define your function here
Hello () {
   echo "Hello World $1 $2"
}

# Invoke your function
Hello Zara Ali
Poor Polecat

función en shell script

#!/bin/sh

# Function Definition
Welcome () {
   echo "Welcome $1"
}

# Calling the function Welcome with argument 
Welcome Vel
Vel

Funciones en Linux

#!/bin/sh

# Define your function here
Hello () {
   echo "Hello World"
}

# Invoke your function
Hello
dravid3x

Respuestas similares a “función en shell script”

Preguntas similares a “función en shell script”

Más respuestas relacionadas con “función en shell script” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código