Question

How would you write the equivalent script in fish

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

Thank you

Était-ce utile?

La solution

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

for i in (ls)
  echo $i
end
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top