如何在类似 unix 的 `which` 之后通过管道传输 `file` os

How do I pipe `file` after `which` in unix-like os

$which python
/usr/bin/python
$file /usr/bin/python
/usr/bin/python: Mach-O universal binary with 2 architectures ...

我尝试使用 which python | file 但它不起作用。

有不止一种方法可以做到这一点。在我脑海中浮现出几个:

  1. file $(which python)
  2. which python | xargs file