Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
魚で同等のスクリプトをどのように記述しますか
#!/bin/bash for i in `ls` do echo $i done
ありがとうございました
fish は、シェル出力をキャプチャするためにバッククォートではなく(括弧を使用します:)
(
)
for i in (ls) echo $i end