Skip to content
View lukexie's full-sized avatar

Block or report lukexie

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 is supported. This note will only be visible to you.
Report abuse

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

Report abuse

Pinned Loading

  1. todo-mx todo-mx Public

    Forked from rodbv/todo-mx

    start with step.8

    Python

  2. 找出某 size 的檔案 找出某 size 的檔案
    1
    #!/bin/bash
    2
    find . -type f -printf "%s\t%p\n" | grep 213
    3
    # %s  file size in byte
    4
    # %p  filename
    5