7 lines
89 B
Ruby
7 lines
89 B
Ruby
#!/usr/bin/env ruby
|
|
|
|
puts `ls -l .`
|
|
puts 'we be in ' + `pwd`
|
|
|
|
puts system('hostname -a')
|