You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
210 B
8 lines
210 B
3 years ago
|
#!/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
|