8 lines
90 B
Ruby
Executable File
8 lines
90 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
args = ARGV.join(' ')
|
|
|
|
command = "git diff -w #{args}"
|
|
|
|
exec command
|