-1

I have this command:

systemctl restart rh-php71-php-fpm -l

I would like to know what the -l which is passed at the end of the command corresponds to?

Mercer
  • 113
  • 5

1 Answers1

3

-l is the equivalent of --full

It means: Do not ellipsize unit names, process tree entries, journal output, or truncate unit descriptions in the output of status, list-units, list-jobs, and list-timers.

All parameters can be found here.

Overmind
  • 3,076
  • 2
  • 16
  • 25