Skip to content

Instantly share code, notes, and snippets.

@nsuthison
Created October 24, 2020 10:45
Show Gist options
  • Save nsuthison/33ebd74bf407c1847c6e7bdd5a739dfd to your computer and use it in GitHub Desktop.
Save nsuthison/33ebd74bf407c1847c6e7bdd5a739dfd to your computer and use it in GitHub Desktop.
find-missing-tldr.bash
for cmd in $(bash -c 'compgen -c | sort');
do echo $cmd "=>" $(tldr $cmd);
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment