-
-
Notifications
You must be signed in to change notification settings - Fork 42
London | 25-SDC-Nov | Jesus del Moral | Sprint 2 | Shell pipelines #228
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: main
Are you sure you want to change the base?
Conversation
LonMcGregor
left a comment
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.
Did you mean to make changes to all these files? We try to keep pull requests specific to just the files in the feature we are changing - for this, everything within the shell pipelines sprint task. I can't continue reviewing until the PR is made more specific.
|
Include the command ls, grep, tr, sort, uniq, head, tail My changes meet the requirements of the task Contains exercises to help you practice combining shell tools in pipelines. Each folder is named after a group of tools, and contains exercises to practice using them. |
a346317 to
ae19e63
Compare
LonMcGregor
left a comment
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.
This looks good, just one issue in one of the tasks for you to take another look at
shell-pipelines/ls-grep/script-04.sh
Outdated
| # TODO: Write a command to count the number of files in the sample-files directory whose name starts with an upper case letter and doesn't contain any other upper case letters. | ||
| # Your output should be the number 7. | ||
|
|
||
| ls sample-files | grep '^[A-Z][^A-Z]*$' No newline at end of file |
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.
This task is asking to count the output, do you remember how to make grep do that?
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.
The script has been modified and working properly
|
Great! |
Include the command ls, grep, tr, sort, uniq, head, tail
My changes meet the requirements of the task
I have tested my changes
Contains exercises to help you practice combining shell tools in pipelines.
Each folder is named after a group of tools, and contains exercises to practice using them.