diff options
Diffstat (limited to 'src/systemctl/systemctl.c')
-rw-r--r-- | src/systemctl/systemctl.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index 327eb85ca1..aab92c466f 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -3797,7 +3797,10 @@ static int cat(sd_bus *bus, char **args) { } if (!isempty(fragment_path)) { - fprintf(stdout, "# %s\n", fragment_path); + fprintf(stdout, "%s# %s%s\n", + ansi_highlight_blue(), + fragment_path, + ansi_highlight_off()); fflush(stdout); r = sendfile_full(STDOUT_FILENO, fragment_path); |