I have a bash script that employs the read command to read arguments to commands interactively, for example yes/no options. Is there a way to call this script i
read
anothe ralternative can be
echo "something" | tee /path/to/file
The tee command prints the input it receives to the screen and saves it to a file at the same time.