Skip to content
Snippets Groups Projects
Verified Commit 39d1a0ad authored by Emily Rowlands's avatar Emily Rowlands
Browse files

Added shell solution for week 1

parents
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
if [ $# -ne 1 ]
then
echo Exactly 1 argument is required >&2
exit 1
fi
curl --silent https://www.ecs.soton.ac.uk/people/$1 | grep -P '(?<="name">).*(?=<\/h1)' --only-matching
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment