openbsd-webzine/issues/issue-3/50_TIPS.html
Solene Rapenne 86aa08e4b9 work on #5
2021-11-25 21:20:03 +01:00

12 lines
327 B
HTML

<article id="tips">
<div class="puffies" aria-hidden="true">🐡🐡🐡</div>
<h2>Shell tip</h2>
<p>
Display the current month calendar with current day highlighted:
<pre>now=$(date +%d) ; /usr/bin/cal -m | \
sed -E "3,\\$s/( |^)($now)( |\\$)/\\1$(printf "\\033[7m")\\2$(printf "\\033[0m")\\3/"</pre>
</pre>
</p>
</article>