Hi Splunkometry88, Try the following. Create a file with the following content: #!/bin/bash
echo "description,http_referrer,http_user_agent,url,weight" > dest.csv
sed -E 's/(.*)/,,,\1,/' source.txt >> dest.csv Save it as create_csv.sh. Then make it executable: chmod 744 create_csv.sh Assuming 'source.txt' has your list of URLs, issuing the command: ./create_csv.sh will produce a file named "dest.csv" that looks like: description,http_referrer,http_user_agent,url,weight
,,,https://testurl.com,
,,,https://testurl1.com,
,,,https://testurl2.com,
,,,https://testurl3.com, Hope that is what you were seeking. Regards, -bd-
... View more