This file contains 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
#!/bin/bash | |
# Written with assistance from GPT4 | |
# Based on https://gist.github.com/ogavrisevs/2debdcb96d3002a9cbf2 | |
function show_help() { | |
echo "Usage: $0 [MFA_TOKEN_CODE] [-h] [--help]" | |
echo | |
echo "This script updates the AWS session token for the specified profile." | |
echo | |
echo "Options:" |
This file contains 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
class Input extends React.Component | |
{ | |
constructor(props) { | |
super(props); | |
this.state = { | |
inputText: '', | |
currentUrl: '' | |
}; | |
this.handleChange = this.handleChange.bind(this); |