-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Add Terminal getting started tutorial #7390
Conversation
docs/terminal/getting-started.md
Outdated
Get-ChildItem *.txt | Select-String "dir" | ||
``` | ||
|
||
* Bash | ||
|
||
```bash | ||
grep -n "dir" *.txt |
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.
Should these use Command.txt explicitly? There may be other .txt files
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.
It's not needed but its a quick way to set the user up for success in this tutorial. Unless we get people to download some predefined repo, we don't know what files are available. And then we'd need to provide a more vague search grep -n <some text> <your files>
.
Fixes #7360