Kirby F
Kirby F

Reputation: 1

Windows CLI equivalent to Linux lesser than symbol?

This is my first post and I'm already apologetic as this may be too simple of a question. I'm starting to teach myself SQL and the super guide I'm following (http://sql.learncodethehardway.org) uses linux commands while I'm trying to learn on a Windows PC.

The author uses the linux command < to send inputs from a text file on the right to the program on the left. Is there an equivalent to this command in Windows PowerShell? I googled the heck out of it and searched as much as I could here but couldn't find an answer.

Thanks for your assistance!

Upvotes: 0

Views: 187

Answers (1)

Serj-Tm
Serj-Tm

Reputation: 16981

cat c:\temp\q.txt | bla-bla-program

Upvotes: 1

Related Questions