Looking in my /etc/inittab file I see the following entry:
ca:12345:ctrlaltdel:/sbin/shutdown -t1 -a -r now
What do the -t1 and -a options mean? They do not appear in the manual for the shutdown command. I have also seen another /etc/inittab in a reference book that shows:
ca::ctrlaltdel:/sbin/shutdown -r -t 4 now
Since no runlevel is specified, does this mean that it is works for all run levels from 0 to 6? What does the "-t 4" mean?
Also, is there a reason why the -a and -t options are not mentioned in the manual for the shutdown command?
/etc/inittab
is a thing of the past, so what it contains is entirely irrelevant to the actual operation of your machine. See https://unix.stackexchange.com/a/394238/5132 and what it hyperlinks to for more. – JdeBP Feb 09 '18 at 05:32