-
Notifications
You must be signed in to change notification settings - Fork 3
Remove high freq #25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Remove high freq #25
Conversation
@@ -0,0 +1,25 @@ | |||
gawk -f convert.awk test.txt > 1.csv | |||
if diff 1.csv test.result.csv > /tmp/null; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/tmp/null
==> /dev/null
Let us set a high bar for our engineering skills. |
entry, member, begin, end, | ||
company, title, seniority, function_, | ||
school, degree, degree_rank, field); | ||
company, title, "", function_, #seniority is omitted because of dominaint features |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we need seniority for picking out the most senior expirience every year.
) > /dev/null; then | ||
compare=$((echo "$out") | gawk -F'\t' '{if(NF!=12 || $9!="" || $10!="" || $11!="" || $12!="") print "abc"}') | ||
if [[ -z "$compare" ]];then | ||
echo "test passed"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PASSED
LGTM! Master Bash! |
No description provided.