Skip to content
View chden's full-sized avatar
👾
👾

Block or report chden

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
chden/README.md

Hi there 👋

Pinned Loading

  1. Bash starter with logging and args. Bash starter with logging and args.
    1
    #!/bin/bash
    2
    #
    3
    # Bash starter with logging and args.
    4
    
                  
    5
    
                  
  2. Bash script that searches for files ... Bash script that searches for files and directories, but also files in archives and text in files.
    1
    #!/bin/bash
    2
    
                  
    3
    app="$(basename "${0}")"
    4
    
                  
    5
    usage() {
  3. Bash script that watches for changes... Bash script that watches for changes in a local directory and syncs it to a destination
    1
    #!/bin/bash
    2
    
                  
    3
    usage() {
    4
    cat <<-EOM
    5
    $(basename "${0}") watches for changes in a local directory and syncs it to a destination.
  4. Toggles a file or folder to be ignor... Toggles a file or folder to be ignored by Dropbox
    1
    #!/bin/bash
    2
    
                  
    3
    if [ ! -e "$1" ]; then
    4
      echo "ERROR: $file is not a file."
    5
      exit 1