You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env fish
|
|
|
|
function quick-diff -d 'Quickly diffs a file and places it in a package dir'
|
|
diff -u $argv[1] $argv[2] > $_agw_dir_src/packages/void/greyserv/srcpkgs/$argv[3]/patches/$argv[4]
|
|
end
|
|
|
|
## EOF
|