in reply to Kill User

Please don't use backquotes in a void context. You'll want
system "/usr/bin/fuser", "-k", "/dev/pts/$rec[3]";
for example.

Backquotes in a void context do more work than needed, and keep you from seeing output of the commands and keep you from interacting with the command if needed.

-- Randal L. Schwartz, Perl hacker