I have a problem with redirections :
$ which python3
gives me
/Library/Frameworks/Python.framework/Versions/3.7/bin/python3
and
$ ls -l /Library/Frameworks/Python.framework/Versions/3.7/bin/python3
gives me
lrwxr-xr-x 1 root admin 9 5 fév 18:30 /Library/Frameworks/Python.framework/Versions/3.7/bin/python3 -> python3.7
but
which python3 | ls -l
don't gives me the same result.
Do you know why ? And what is the right command for redirection ?
I'm using OSX.
I have to say that the following question pass the output of previous command to next as an argument may be the same as this one, but if I look the answers that were given, there I'm lost. To be useful, they require more advanced knowledge or study than those given here.
echo
behaves likels
with regards to (not) reading its standard input. – Kusalananda Feb 16 '19 at 10:33