Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
echodict
/
readest
like
0
Dataset card
Files
Files and versions
xet
Community
main
readest
/
packages
/
tauri
/
crates
/
tauri-cli
/
scripts
/
kill-children.sh
dlxj
add sub mods
2d8be8f
about 2 months ago
raw
Copy download link
history
blame
contribute
delete
167 Bytes
#!/usr/bin/env sh
getcpid
() {
cpids=$(pgrep -P
$1
|xargs)
for
cpid
in
$cpids
;
do
echo
"
$cpid
"
getcpid
$cpid
done
}
kill
$(getcpid
$1
)