I've created a service; lets call it abc.service. I run:
sudo systemctl enable /home/pi/abc.service 1>output.txt 2>error.txt
and output.txt is empty while error.txt contains:
Created symlink /etc/systemd/system/multi-user.target.wants/abc.service -> /home/pi/abc.service.
Created symlink /etc/systemd/system/abc.service -> /home/pi/abc.service.
Why is this?
EDIT: My purpose is this -- I have a global program running that can run commands, and commands with stderr are flagged and printed to error files. However, it seems like systemd is printing to stderr (and therefore my error files) even though it seems like it's not an error.
EDIT2: Example systemd file:
[Unit]
Description=Test file
[Service]
Type=simple
ExecStart=/bin/ls /home/pi
[Install]
WantedBy=multi-user.target
Just tested, enabling this file prints to stderr (like error.txt from above). Tested service, prints dir contents of home directory.