Я пытаюсь запустить службу tomcat в моей системе Linux с помощью следующей команды
chkconfig --list | grep -i on | sed -n '/ tomcat / p' | awk '{print $ 1}'
и вывод, который я получаю
Note: This output shows SysV services only and does not include native
systemd services. SysV configuration data might be overridden by native
systemd configuration.
If you want to list systemd services use 'systemctl list-unit-files'.
To see services enabled on particular target use
'systemctl list-dependencies [target]'.
tomcat9
Я просто хочу получить имя службы "tomcat9". Какие изменения мне нужно сделать в команде?