2

我试图做我认为应该是一个非常基本的脚本作为我的第一个 ruby​​ 代码。也许有人可以帮助我解决正在发生的事情。

./delete_file.rb: line 3: puts: command not found
./delete_file.rb: line 4: auth_token: command not found
./delete_file.rb: line 6: puts: command not found

User1$ cat delete_file.rb 
# /usr/bin/ruby
# Delete file script
puts "Enter current token"
auth_token = gets.chomp

puts "data goes here" + auth_token + "more data here"
4

1 回答 1

8

文件的第一行应该是:

#!/usr/bin/ruby
于 2012-12-01T19:54:01.783 回答