When I run ytstudio videos list --limit 500 I am seeing some duplicate rows.
For example, ytstudio videos list --limit 500 -o table | sort | uniq -c | sort -nr | awk '{print $1}' | uniq -c shows that I get 17 videos printed 3 times each, 32 videos printed twice each, and the other 115 videos printed once each.
They are not real duplicate videos in Youtube, which we know because each row of the table includes the ID, and the (first) uniq command of the pipe is only grouping identical lines.
When I run
ytstudio videos list --limit 500I am seeing some duplicate rows.For example,
ytstudio videos list --limit 500 -o table | sort | uniq -c | sort -nr | awk '{print $1}' | uniq -cshows that I get 17 videos printed 3 times each, 32 videos printed twice each, and the other 115 videos printed once each.They are not real duplicate videos in Youtube, which we know because each row of the table includes the ID, and the (first) uniq command of the pipe is only grouping identical lines.