I am new to scheduling tasks with cron and crontab. I am trying to schedule execution of a task as if I had logged on, opened a terminal, and executed it myself.
Ho
Remember crontab is a daemon or service, so is not like a user logged in or something. If you want to have your environment variables you will need to set them yourself. However, most of these variables are set by the shell from the /etc/profile path and then going into your custom variables into your $HOME directory.
You may be able to set some of them by "sourcing" your /etc/profile like:
Where
41 11 * * * /home/
cron_env.sh will contain something like:
#!/bin/sh
source /etc/profile
/usr/bin/env > /home/