Skip to content
View gh4n's full-sized avatar
🤍
🤍

Highlights

  • Pro

Block or report gh4n

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
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