Potter XU

Results 4 comments of Potter XU

Hi @sim4life , Although I am not very familiar with Nushell, I just tried executing the command you provided directly in Nushell ``` ~> for dir in "ls -s ....

Check https://www.nushell.sh/book/control_flow.html#for for a valid for loop sytax in nushell ``` for file in (ls .) { print $file } for direc in (ls -s . | where type ==...

@sim4life Are you referencing the [for loop section in the readme](https://github.com/casey/just?tab=readme-ov-file#for-loops) and you think you are using a justfile for loop syntax? ``` for2: for direc in `ls -s ....

Hi @swuferhong @luoyuxia , would you mind take a look at the above changes in doc? Thank you.