Skip to content
View mkieffer1107's full-sized avatar

Highlights

  • Pro

Block or report mkieffer1107

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. todo_finder: script to print the tex... todo_finder: script to print the text after all "TODO: " strings under a directory recursively
    1
    #!/bin/bash
    2
    
                  
    3
    script_name="$(basename "$0")" # name of the shell file, so that we can ignore it later (since it has TODO in it)
    4
    current_dir=$(basename "$dir") # name of the current directory
    5
    dir=${1:-"."}                  # directory to search for TODOs is in the first argument, default is the current directory