I can't remove the lines between the series entries, i have to move them one by one, is there a faster way? (i will show what i mean with a image).Sorry i was to late with the title and now cant find a way to edit it.
Its about EMDB (Eric's Movie Database)
[Attachment 81709 - Click to enlarge]
+ Reply to Thread
Results 1 to 3 of 3
-
-
you can use n++ to do this task.
Also, you can use any of the below
grep '.' file
grep -v '^$' file
sed -n '/./p' file
sed '/^$/d' file
awk '/./' file
awk '!/^$/' file
awk '$0 != ""' file
awk 'length($0) != 0' file -
Oke thanks, a bit complicated, you mean with notepad++? and which file should I edit?.
A bit too complicated for me, I had hoped that it could be done from the app itself.Last edited by Mondriaan; 22nd Aug 2024 at 19:26. Reason: Keep it together
Similar Threads
-
Seek Entries at End of MKV File Instead of at Start, Impossible to Navigate
By koberulz in forum Newbie / General discussionsReplies: 13Last Post: 30th Nov 2023, 20:02 -
A TV series from nowe.com
By CrymanChen in forum Video Streaming DownloadingReplies: 13Last Post: 19th Oct 2022, 09:20 -
Nero Video has hard limit on number of menu entries
By ravenswd in forum Authoring (DVD)Replies: 5Last Post: 17th Jan 2022, 05:46 -
Remove hdr without converting. Just remove hdr from mkv files
By fits79 in forum Video ConversionReplies: 9Last Post: 12th Jun 2020, 13:02 -
CALL FOR ENTRIES San Francisco Green Film Festival 2020
By sfgreenfilmfes in forum Latest Video NewsReplies: 1Last Post: 3rd Feb 2020, 19:46