Загрузка данных


#!/bin/bash
HELL=Hello
function hello {
    LOCAL_HELLO=World
    echo $HELLO
}

echo $HELLO
hello