Sorting functions alphabetically.

This commit is contained in:
Antonio Terceiro 2008-08-08 22:21:56 -03:00 committed by Daniel Baumann
parent 268c0dd538
commit 4d4f4dd8d5
1 changed files with 8 additions and 8 deletions

View File

@ -9,14 +9,6 @@
set -e set -e
Truncate ()
{
for FILE in ${@}
do
: > ${FILE}
done
}
Find_files () Find_files ()
{ {
(ls "${@}" | grep -qs .) > /dev/null 2>&1 (ls "${@}" | grep -qs .) > /dev/null 2>&1
@ -40,3 +32,11 @@ In_list ()
return 1 return 1
} }
Truncate ()
{
for FILE in ${@}
do
: > ${FILE}
done
}