simonthecat
Member
- Messages
- 60
- Reaction score
- 0
- Points
- 6
I was playing with piping in linux and came up with this:
Now I want to pass that to the ls -l command so I tried this:
But that just lists the current working directory.
Any ideas on why this did not work?
Code:
echo $PATH | tr ; “ “
Now I want to pass that to the ls -l command so I tried this:
Code:
echo $PATH | tr ; “ “ | ls -l
But that just lists the current working directory.
Any ideas on why this did not work?
Last edited: