"Our timing was nearly perfect—a mere two weeks after we wrote our joint essay, Substack had a huge controversy, and is now facing a backlash. Writers are thinking of jumping ship and looking for ideas for what to do next. I’ve been doing this without a net for a while, and I have a few … Continue reading You Don’t Need (To Complain About) Substack
Category: software
bash: Number of Days Between Today and Some Future Date
#!/bin/bash printf -v date '%(%Y-%m-%d)T\n' -1 echo $(( ($(date -d $1 +%s) - $(date -d $date +%s)) / 86400 )) days Above is a bash script to output the number of days between today and some future date. Copy it into a file, e.g., diffdate.sh, into a directory, e.g., ~/bin/scripts. Then, enter the directory you … Continue reading bash: Number of Days Between Today and Some Future Date
