Newer
Older
#! /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'
#! /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'