The Hidden Complexities of Running Shell Commands in Ruby
Did you know that system
supports the equivalent of >dev/null
output redirection? Or that backticks raise an exception when a command isn’t found, but system
does not? Let’s go on a deep dive into the surprising oddities and capabilities of the Ruby standard library! https://mattbrictson.com/blog/run-shell-commands-in-ruby
Post a comment