Skip to content

Instantly share code, notes, and snippets.

View sametaylak's full-sized avatar
🔔

Samet Aylak sametaylak

🔔
View GitHub Profile

Informal Contractions

  • going to => gonna
  • got to => gotta
  • want to => wanna
  • get you => getcha
  • got you => gotcha
  • don't you => dontcha
  • kind of => kinda
  • lot of => lotta
@sametaylak
sametaylak / git_day.sh
Last active July 31, 2018 05:45
This script shows your commits of today. this script searches all subfolders/repos
#!/bin/bash
YELLOW="\\033[1;33m"
RED="\\033[0;31m"
NC="\\033[0m"
PARENT_DIR=$(pwd)
find "$PARENT_DIR" -type d -name ".git"| while read -r line; do
TARGET_FOLDER=$(cd "$line/.." || exit; pwd)
TARGET_FOLDER_NAME=$(basename "$TARGET_FOLDER")