10 lines
182 B
Bash
Executable file
10 lines
182 B
Bash
Executable file
#!/bin/sh
|
|
set -eu
|
|
. "$(dirname "$0")/../lib.sh"
|
|
|
|
set_changed_files
|
|
|
|
pattern="$1"
|
|
shift
|
|
|
|
< "$CHANGED_FILES" grep "$pattern" | hide xargs ${CI:+-r} -t -P16 "-n${XARGS_N:-256}" -- "$@"
|