This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import webbrowser | |
import argparse | |
import os | |
parser = argparse.ArgumentParser() | |
parser.add_argument("-b", "--browser", help="specify the browser name in open to url in") | |
args = parser.parse_args() | |
browser = args.browser | |
browser = browser+'.exe' | |
os.system("taskkill /f /im "+browser) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.google.com | |
https://www.wikipedia.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import webbrowser | |
import argparse | |
urls = './urls.txt' | |
parser = argparse.ArgumentParser() | |
parser.add_argument("-b", "--browser", help="specify the browser name in open to url in") | |
args = parser.parse_args() | |
browser = args.browser | |
print(browser) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: demo-application-1 | |
namespace: namespace-1 | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: demo-application-1 |