Getting used to a UNIX shell and to UNIX philosophy can take some time, but it’s very rewarding in making everything more simple (thus more efficient).
Yeah, and that’s the problem for me. See my comment above. Nextcloud and those services are “bloated”, yes, but very convenient. I never worked in an IT-environment, so I’m a total noob.
But stuff like NC AIO give me a whole pre-set-up LAMP stack without needing to know how everything works, and that’s unbelievable for me.
lud@lemm.ee 1 year ago
What do you mean by that?
Do you use crontab to save events?
Anafroj@sh.itjust.works 1 year ago
Basically, yes. You can configure most cron program to mail task output to you (it’s usually done by setting the
MAILTO
variable in the crontab, provided sendmail is available on your system).So basically, I do things like:
0 9 11 10 echo 'lunch with John Doe at 12:20'
It sends me a mail, and I can see the upcoming events with
crontab -l
. If it’s not a recurring event, I then delete the rule.TheHolm@aussie.zone 1 year ago
Damn, I’m doing *nixes for nearly 30 years. But never went to that level of minimalism. Nice trick.