Go to English page

ViaThinkSoft CodeLib

Dieser Artikel befindet sich in der Kategorie:
CodeLibProgrammierhilfenBash (Linux Shell)

Datei "variables"

# This is a comment
ABC=xyz

Datei "test.sh"

#!/bin/bash

# Load global variables
if [ -f variables ]; then
        . variables
fi

# This will output "xyz"
echo "$ABC"
Daniel Marschall
ViaThinkSoft Mitbegründer