Skip to content
View edceds's full-sized avatar
  • Curitiba, Brazil
  • 15:51 (UTC -03:00)

Organizations

@mentalabsio @Loot-Heroes @opencardinal @jadefi-io

Block or report edceds

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. useful-bash-scripts-file-management.... useful-bash-scripts-file-management.bash
    1
    find from_folder -name '*.*' -exec mv {} to_folder \;
    2
    ls -1q * | wc -l
    3
    for i in {0..26}; do cp 0.json assets/$i.json; jq '.name = .name + " #'$i'" | .image = "'$i'.png" | .properties.files[0].uri = "'$i'.png"' assets/$i.json > tmp.$$.json && mv tmp.$$.json assets/$i.json; done
    4
    new=0;for i in assets/*.png; do mv -n "$i" assets/"$new.png"; ((new++)); done
    5
    find ./assets/ -maxdepth 1 -type f -name "*.png" | wc -l
  2. my script for setting up programming... my script for setting up programming machine on Mac & Linux
    1
    if [ "$(uname)" = "Darwin" ]; then
    2
      brew install zsh libatomic1
    3
    elif [ "$(uname)" = "Linux" ]; then
    4
      apt-get install zsh libatomic1
    5
    else