Horje
how to extract doi from rtf file Code Example
how to extract doi from rtf file
v2
cat Bibliography.rtf | sed 's/doi.org\//\n/g' | grep "^[0-9]" | sed -r "s/.{2}$//" > new.txt

v1
cat Bib.rtf | sed -e 's/doi:/\'$'\n/g' | grep "^[0-9]" | sed -r "s/.{3}$//" > new.txt
				^ add new lines			^begin with numbers	 ^remove last 3 characters 		

bib.rtf file was created using zotero 6.
select all > right click > create Bibgraphy > export rft




Shell

Related
fallocate 10mb command Code Example fallocate 10mb command Code Example
git tab not workingh Code Example git tab not workingh Code Example
bash exit code Code Example bash exit code Code Example
e01 file car boardcomputer Code Example e01 file car boardcomputer Code Example
2 digit after the coma pytohn Code Example 2 digit after the coma pytohn Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10