====== SED - Delete - Delete every Nth line ====== To delete every 8th line: gsed '0~8d' # GNU sed only sed 'n;n;n;n;n;n;n;d;' # other seds