Gehe zu deutscher Webseite

ViaThinkSoft CodeLib

This article is in:
CodeLibProgramming aidsBash (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 Co-Founder