Scripting Grep
Script Requirements:
- Get Dataset located at
https://launchcodelearning.org/api/walkthrough/user?data_format=csv
- write it to a file called
user-data
in yourhome
directory.
- write it to a file called
- Create a new directory called
technical-user-data
inside of thehome directory
- Filter the Data inside of
user-data
to include only lines matchingPaul
and write the results to a file calledpaul-data.csv
inside of thetechnical-user-data
directory - Filter the Data inside of the
paul-data.csv
file to only include results withCentene
as the employer and write to a new file calledpaul-employer-centene.csv
inside of thetechnical-user-data
directory - Filter the Data inside of the
paul-employer-centene.csv
file to only include users with emails ending withexample.net
to a new file calledfinal-paul-user-data.csv
inside of thetechnical-user-data
directory