Skip to content
View binand's full-sized avatar

Block or report binand

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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. Locates the largest file (files) in ... Locates the largest file (files) in a directory and its subdirectories passed as argument.
    1
    #include <stdio.h>
    2
    #include <stdlib.h>
    3
    #include <string.h>
    4
    #include <ftw.h>
    5
    
                  
  2. A small shell library for manipulati... A small shell library for manipulating a counter in shell scripts
    1
    #!/bin/bash
    2
    
                  
    3
    # Initializes the counter to 0 (uses filename in arg #1 for state). Returns 0 on success.
    4
    function init_counter() {
    5
        local _f=$1