You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi folks -- Really loving Lino so far. It makes removes string interpolation to run hacky commands. What is the recommended approach in running a command (or a set of commands) in a given directory. Below is an example of set of bash commands I currently run either using system(command) or RubyExpect::Expect.spawn(command)
I am not entirely sure how I should approach this with Lino which allows me to iteratively build essentially the command I would run in bash. How should I run git clean -fdx in a given directory? I am currently doing what is below but I think it takes away from the overall iterative building experience.
Hi folks -- Really loving Lino so far. It makes removes string interpolation to run hacky commands. What is the recommended approach in running a command (or a set of commands) in a given directory. Below is an example of set of bash commands I currently run either using
system(command)
orRubyExpect::Expect.spawn(command)
I am not entirely sure how I should approach this with Lino which allows me to iteratively build essentially the command I would run in bash. How should I run git clean -fdx in a given directory? I am currently doing what is below but I think it takes away from the overall iterative building experience.
Am I missing something from the DSL I could use? If there is no clean way to do this, it might be helpful to have something along the lines of:
The text was updated successfully, but these errors were encountered: