Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- ######################################################################
- #Copyright (C) 2024 Kris Occhipinti
- #https://filmsbykris.com
- #This program is free software: you can redistribute it and/or modify
- #it under the terms of the GNU General Public License as published by
- #the Free Software Foundation version 3 of the License.
- #This program is distributed in the hope that it will be useful,
- #but WITHOUT ANY WARRANTY; without even the implied warranty of
- #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- #GNU General Public License for more details.
- #You should have received a copy of the GNU General Public License
- #along with this program. If not, see <http://www.gnu.org/licenses/>.
- ######################################################################
- list=(
- "https://filmsbykris.com"
- "tel:+1 (385) 429-0198;"
- "smsto:555-555-5555;"
- "smsto:555-555-5555:This is the message. Please Visit https://filmsbykris.com;"
- "BEGIN:VCARD
- VERSION:2.1
- N:Kris
- TEL;HOME;VOICE:555-555-5555
- TEL;WORK;VOICE:666-666-6666
- URL:https://filmsbykris.com
- END:VCARD"
- "BEGIN:VEVENT
- SUMMARY:Films By Kris Video
- LOCATION:The World Wide Web
- URL:http://filmsbykris.com
- DESCRIPTION:Watch a cool video
- DTSTART:20241113T090000
- DTEND:20241113T100000
- RRULE:FREQ=WEEKLY;INTERVAL=1;UNTIL=T000000Z
- BEGIN:VALARM
- TRIGGER:-PT0M
- ACTION:DISPLAY
- END:VALARM
- END:VEVENT"
- "WIFI:S:MyWiFi;T:WPA;P:SecretPassword;;"
- "mailto:billgates@microsoft.com?subject=Subject&body=This is the Body"
- "tel:+1 (385) 429-0198;This is extra Text"
- )
- for i in "${list[@]}"; do
- clear
- echo "$i"
- echo "$i"|qrencode -t utf8
- read -p "Enter to Continue."
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement