Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Development Tools Console Foundations Getting Started with the Console Introduction

How do I run this command in the Windows Powershell? $ find / -iname my_first_project 2>/dev/null

This command, which allows me to search for files or directories via the terminal, works for both the Linux and Mac terminal. I'm trying to figure out how to do the same thing on Windows Powershell.

1 Answer

I figured it out. On Windows Powershell:

$ ls -Recurse my_first_project

$ Get-ChildItem -Path . -Filter my_first_project -Recurse