Start working on installation setup script
This commit is contained in:
parent
d202f63bb7
commit
048d519c14
13
install
13
install
@ -1,2 +1,15 @@
|
|||||||
echo "Initializing..."
|
echo "Initializing..."
|
||||||
FILES=$(ls -dA */)
|
FILES=$(ls -dA */)
|
||||||
|
LANGUAGES=()
|
||||||
|
for f in $FILES
|
||||||
|
do
|
||||||
|
if [ "$f" != "scripts/" ] && [ "$f" != "utils/" ];
|
||||||
|
then
|
||||||
|
LANGUAGES+=(""${f::-1}"")
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
echo "Languages Detected:"
|
||||||
|
for f in "${LANGUAGES[@]}"
|
||||||
|
do
|
||||||
|
printf "\t%-15s\n" $f
|
||||||
|
done
|
Loading…
x
Reference in New Issue
Block a user