6 lines
64 B
Plaintext
6 lines
64 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
for l in $@; do
|
||
|
curl $l.patch | git am -3
|
||
|
done
|