----
#!/bin/bash
## create personal log file for tracking tasks
vi logfile_$(date +%m%d%y_%j)
---------
This creates a logfile date stamped so I can reference what I was doing that day.
----
#!/bin/bash
## create personal log file for tracking tasks
vi logfile_$(date +%m%d%y_%j)
---------
This creates a logfile date stamped so I can reference what I was doing that day.