Skip to content

Instantly share code, notes, and snippets.

View vitorhugomattos's full-sized avatar
✌️

Vitor Mattos vitorhugomattos

✌️
View GitHub Profile
@vitorhugomattos
vitorhugomattos / tabs.sh
Created June 14, 2019 02:33
Converter indentação de espaços para tabs em todo projeto (pasta e subpastas)
#!/bin/bash
if [ -n $1 ]
then
directory="$1"
else
directory="."
fi
while read -r -d "" file; do