Skip to content
Snippets Groups Projects
extract-iris.sh 146 B
Newer Older
  • Learn to ignore specific revisions
  • Andreas Schärtl's avatar
    Andreas Schärtl committed
    #! /bin/sh
    
    # extract iris from rdf files passed on stdin; really it just returns all
    # quoted strings
    
    set -eu
    
    grep -P -o '".*"' | sed 's/"//g'