質問

How would you write the equivalent script in fish

#!/bin/bash
for i in `ls`
do
  echo $i
done

Thank you

役に立ちましたか?

解決

fish uses ( parens ) rather than backticks for capturing shell output:

for i in (ls)
  echo $i
end
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top