Created
February 11, 2022 18:16
-
-
Save devlinjunker/42e8ce6bf3cd0eefef966ec49059c605 to your computer and use it in GitHub Desktop.
Reminder script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/bash | |
| # print last 20 lines | |
| remember() { | |
| cat ~/.bash_history | awk '{ if (NR % 2 == 0) print NR/2,$0 }' | awk '{ array[NR]=$0 } END { for (i=NR-20; i<=NR; i++) print array[i] }' | |
| } | |
| # TODO: | |
| # - [ ] Accept parameters and check if | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment