bash create local variable in function
Bash[Edit]
+
0
-
0
bash create local variable in function
1 2 3 4 5 6 7#!/bin/bash function some_function() { local local_variable='Some text value here ...' # Some script code here ... }
1 2 3 4 5 6 7#!/bin/bash function some_function() { local local_variable='Some text value here ...' # Some script code here ... }