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