added prayer.sh
Will need some further work, but it's a start
This commit is contained in:
parent
9d53a2223d
commit
53f73a1701
1 changed files with 48 additions and 0 deletions
48
prayer.sh
Normal file
48
prayer.sh
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Print the prayer
|
||||||
|
echo "Lord Jesus Christ,
|
||||||
|
Sovereign King enthroned in Heaven,
|
||||||
|
in your love and mercy
|
||||||
|
establish a perimeter of protection
|
||||||
|
with Your Precious Blood
|
||||||
|
around our communication devices
|
||||||
|
and all technology used during this session,
|
||||||
|
the cameras or webcams, microphones,
|
||||||
|
speakers, displays, any and all software,
|
||||||
|
WiFi connections in the air,
|
||||||
|
the routers and optic cables
|
||||||
|
involved in the transmission of data,
|
||||||
|
and the light waves being used to transfer data.
|
||||||
|
Cleanse them with your precious blood
|
||||||
|
and drive from them any satanic influence.
|
||||||
|
Establish around them a sanctuary of your mercy
|
||||||
|
where Satan and any other evil spirit or human agency cannot interfere.
|
||||||
|
I ask, Father, that you would block,
|
||||||
|
bind, rebuke and render impotent
|
||||||
|
any assault of the evil one from them in any way.
|
||||||
|
Father, so long as these instruments are utilized in this ministry of Divine mercy,
|
||||||
|
we ask you to allow them to enjoy the protection
|
||||||
|
of the Blessed Mother, St. Michael the Archangel
|
||||||
|
and all the Holy Angels.
|
||||||
|
We ask this in Your Most Holy Name,
|
||||||
|
the Name before which every knee shall bow,
|
||||||
|
in heaven, on the earth and under the earth,
|
||||||
|
that Jesus Christ is Lord."
|
||||||
|
|
||||||
|
# Ask user to type "amen"
|
||||||
|
echo
|
||||||
|
echo "Please type 'amen' to once prayer is finished:"
|
||||||
|
|
||||||
|
# Read user input
|
||||||
|
read input
|
||||||
|
|
||||||
|
# Check if input is "amen"
|
||||||
|
if [ "$input" == "amen" ]; then
|
||||||
|
echo "amen"
|
||||||
|
exit 0
|
||||||
|
else
|
||||||
|
echo "Incorrect entry. Please restart the script and type 'amen' to close it."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in a new issue