update to script and prayer

Updated prayer to include wired connections, and added St Anthony to the litany due to being patron saint of weavers and his work with programmable looms-seemed like a good fit for computers as well
Updated script to not close until "amen" is entered correctly
This commit is contained in:
Tech Priest 2024-11-15 17:30:22 +00:00
parent 53f73a1701
commit 66d25424ae

View file

@ -8,11 +8,10 @@ establish a perimeter of protection
with Your Precious Blood with Your Precious Blood
around our communication devices around our communication devices
and all technology used during this session, and all technology used during this session,
the cameras or webcams, microphones, the cameras, microphones, speakers
speakers, displays, any and all software, displays, any and all software,
WiFi connections in the air, wired and wireless connections,
the routers and optic cables the routers involved in the transmission of data,
involved in the transmission of data,
and the light waves being used to transfer data. and the light waves being used to transfer data.
Cleanse them with your precious blood Cleanse them with your precious blood
and drive from them any satanic influence. and drive from them any satanic influence.
@ -23,26 +22,26 @@ bind, rebuke and render impotent
any assault of the evil one from them in any way. 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, Father, so long as these instruments are utilized in this ministry of Divine mercy,
we ask you to allow them to enjoy the protection we ask you to allow them to enjoy the protection
of the Blessed Mother, St. Michael the Archangel of the Blessed Mother, St. Anthony Mary Claret,
and all the Holy Angels. St. Michael the Archangel, and all the Holy Angels.
We ask this in Your Most Holy Name, We ask this in Your Most Holy Name,
the Name before which every knee shall bow, the Name before which every knee shall bow,
in heaven, on the earth and under the earth, in heaven, on the earth and under the earth,
that Jesus Christ is Lord." that Jesus Christ is Lord."
# Ask user to type "amen" # Prompt input of "amen"
echo while true; do
echo "Please type 'amen' to once prayer is finished:" echo
echo "Please type 'amen' once recitation is accomplished:"
# Read user input # Read user input
read 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
# Check if input is "amen"
if [ "$input" == "amen" ]; then
echo "amen"
exit 0
else
echo "Incorrect entry. Please try again."
fi
done