I\'m trying to set up a simple systemd timer to run a bash script every day at midnight.
systemctl --user status backup.service fails and logs the follo
systemctl --user status backup.service
If that is a copy/paste from your script, you've permuted this line:
#!/usr/env/bin bash
There's no #!/usr/env/bin, you meant #!/usr/bin/env.
#!/usr/env/bin
#!/usr/bin/env