ar
05/19/2023, 4:55 AMNate
05/19/2023, 1:59 PM❯ prefect flow-run ls | awk 'NR>3 {print $2}' | while read line
do
prefect flow-run delete $line
done
although it would probably be faster to use the client to do this async if you have a lot of runs to deletear
05/19/2023, 3:28 PM