22 lines
337 B
Bash
22 lines
337 B
Bash
#!/bin/bash
|
|
|
|
# set the STRING variable
|
|
|
|
|
|
STRING="Hello World!"
|
|
|
|
|
|
# print the contents of the variable on screen
|
|
|
|
|
|
echo $STRING
|
|
echo Changing Directory...
|
|
cd /x/foundry/Data
|
|
echo Adding Files...
|
|
git add -A
|
|
echo Committing changes to Foundry...
|
|
git commit -a -m "Daily Commit"
|
|
echo Done!
|
|
echo Pushing Changes to Repo...
|
|
git push
|
|
echo Done! |