Skip to content
View sudochia's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report sudochia

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 Loading

  1. Split large CSV file into multiple f... Split large CSV file into multiple files and add headers to each file
    1
    ## 1: Split file
    2
    `split -l 5000 data.csv ./split-files`
    3
    
                  
    4
    ## 2: Append suffix '.csv' to each file
    5
    `for f in *; do mv "$f" "$f.csv"; done`