Files
2020-12-25 06:57:28 +03:00

7 lines
83 B
Bash

#!/bin/bash
if [[ "$(pgrep -u $USER)" ]]; then
kill -15 $(pgrep -u $USER)
fi