dotfiles/dot_local/bin/executable_bofh
eeleater 23bdb145e0 Update .config/zsh/env.zsh
Update .config/zsh/rc.zsh
Update .config/zsh/zsh_plugins.txt
Add .local/bin/bofh
2022-12-15 12:32:11 +01:00

4 lines
191 B
Bash

#!/usr/bin/env bash
excuses_file="/usr/share/doc/bofh/excuses"
num_lines=$(nl $excuses_file | tail -n 1 | awk '{print $1}')
awk 'NR=='$((1 + RANDOM % num_lines ))'{print;exit}' $excuses_file