我有一台win7机器,我使用Powershell(它似乎是)
我试图遵循实验室3教程的GIT浸没(http://gitimmersion.com/lab_03.html)。
我不知道如何create a file named hello.rb with the contents below.
puts "Hello, World"任何帮助都是非常感谢的。非常感谢!
发布于 2014-07-27 19:24:20
如果是Powershell,那么使用Set-Content
Set-Content hello.rb 'puts "Hello, World"'发布于 2014-07-27 19:25:54
PowerShell是bash,而不是PowerShell。
echo 'puts "Hello, World"' > hello.rbhttps://stackoverflow.com/questions/24984640
复制相似问题