I've been trying to write the following bash script
#!/bin/bash
python request.py $1 > output.txt
value=$(output.txt)
echo "$value"
The python code is to perform a google search and to store the urls to an output file. I wanted to print the txt file but I'm failing here.