当前位置: 代码迷 >> 综合 >> fish bash shell对比
  详细解决方案

fish bash shell对比

热度:45   发布时间:2023-12-14 06:37:04.0

取值 将shell返回结果作为新的值

bash `ls` $(ls)

fish (ls)

如 echo (pwd) | xsel

echo `pwd` | xsel

echo $(pwd)  |xsel

  相关解决方案