how would I use an answer to this script to be inputted into an sed command?
#!/usr/bin/env bash
echo "Hello, please introduce yourself."
echo -n "Your Username: "
read -r username
I need the username to be entered into a config file. how would I use the answer to “Your Username: “ to be entered into a command like sed -i ‘s/Username/Answer-to-the-question/g’ ~/Desktop/App/Config?