systemctl 과 pm2를 비교하면 명령어가 쉽다는거...? display를 예쁘게 해준다는거? 이 두 개 정도가 많이 아쉽다. 또 아쉬운 것은 pm2 start "명령어" 치면 바로 그냥 시작을 해준다는 거... pm2 start정도로 쉽진 않지만 그래도 pm2는 자체버그가 많아서 간간이 탈을 내는 편임. 다시 systemctl --user로 돌아옴. 다만 wrapper를 작성했다. #!/usr/bin/perl my $scu = "systemctl --user"; my $cmd = shift; my $args = join(' ', @ARGV); if ($cmd eq "") { system("$scu list-unit-files --type=service"); system("$scu list-unit..