mirror of
https://github.com/notwa/rc
synced 2024-11-05 04:29:03 -08:00
16 lines
339 B
Bash
Executable file
16 lines
339 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
# YES_ZSH
|
|
# NO_BASH
|
|
# NO_DASH
|
|
|
|
unscreen() { ### @-
|
|
### i don't use this anymore~
|
|
local pids="$(screen -ls | fgrep "$1" | cut -d. -f1)"
|
|
for pid in $=pids; do
|
|
local ppid="$(ps h --ppid "$pid" -o pid)"
|
|
kill $=ppid || return 1
|
|
done
|
|
return 0
|
|
}
|
|
|
|
[ "${SOURCING:-0}" -gt 0 ] || unscreen "$@"
|