6 lines
87 B
Ruby
6 lines
87 B
Ruby
|
class VolumnController < ApplicationController
|
||
|
def info
|
||
|
@output = `ls`
|
||
|
end
|
||
|
end
|