#!/bin/env bash origin="lovedtracks-jbiason-1710855614.csv" target="listened.csv" line=$(shuf $origin | head -n 1) artist=$(echo $line | cut -d\" -f6 -) song=$(echo $line | cut -d\" -f14 -) echo "$artist - $song" echo $line >> $target sed -i "/$line/d" $origin