Skip to content
View EdoaLive's full-sized avatar
  • Italy

Organizations

@modulo-srl
Block or Report

Block or report EdoaLive

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

  1. ColorPipe ColorPipe Public

    A simple yet effective terminal keywords highlighting tool. Very useful for inspecting logs, also piped in real-time.

    Go 3

  2. muSupervisor muSupervisor Public

    Golang mutex supervisor and deadlock finder tool

    Go

  3. Function to get the nearest btrfs su... Function to get the nearest btrfs subvolume container of a given file or directory
    1
    #!/bin/bash
    2
    
                  
    3
    # *** This snippet contain example function to get the nearest btrfs subvolume container of a given file or directory.
    4
    
                  
    5
    is_btrfs_subvolume() {
  4. Find all the packages which are comp... Find all the packages which are compiled with a determined env variable (or not) in a gentoo system. I needed this to get which packages still need to be recompiled with clang.
    1
    
                  
    2
    cd /var/db/pkg/
    3
    find -iname env*.bz2 -exec sh -c "bzcat {} | grep CC=\\\"clang > /dev/null || echo {} | egrep -o '(([a-z]|-)+\/\w+)' " \;