Commit e8f53347 authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Elimina escapado incorrecto de parámetro

parent d15bcbc1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ function get_size() {

	if [ -d ${1} ]
	then
		echo "$(du -s \"${1}\" | cut -f 1)"
		echo "$(du -s "${1}" | cut -f 1)"
	else
		echo "$(wc -c <"${1}")"
	fi