A List of useful bash scripts for MacOS and Linux A smart way to checkout from branches: function smart_checkout() { git branch echo "Type part of the branch you want to move?" read word for branch in $(git branch);
Remove accents and normalize words export const removeAccents = (word: string) => word .toLowerCase() .normalize('NFD') .replace(/[\u0300-\u036f]/g, '');