The Wayback Machine - https://web.archive.org/web/20251016180337/https://github.com/gh4n
Skip to content
View gh4n's full-sized avatar
🤍
🤍

Block or report gh4n

Report abuse

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

Report abuse
gh4n/README.md
Welcome

Pinned Loading

  1. dwm dwm Public

    my patched version of dwm

    C

  2. dotfiles dotfiles Public

    🔧 .files

    Shell 1

  3. infra infra Public

    random bits of infra that might be useful to you

    Shell

  4. bin bin Public

    🗑️ misc shell scripts

    Shell

  5. stdin to copy (linux version of pbcopy) stdin to copy (linux version of pbcopy)
    1
    echo "something to copy" | xsel -i -b
  6. parallelise bash for loops with an a... parallelise bash for loops with an ampersand
    1
    #!/bin/bash
    2
    
                  
    3
    for thing in list of stuff; do 
    4
      task "$thing" &
    5
    done