Sorting functions alphabetically.
This commit is contained in:
parent
268c0dd538
commit
4d4f4dd8d5
|
@ -9,14 +9,6 @@
|
|||
|
||||
set -e
|
||||
|
||||
Truncate ()
|
||||
{
|
||||
for FILE in ${@}
|
||||
do
|
||||
: > ${FILE}
|
||||
done
|
||||
}
|
||||
|
||||
Find_files ()
|
||||
{
|
||||
(ls "${@}" | grep -qs .) > /dev/null 2>&1
|
||||
|
@ -40,3 +32,11 @@ In_list ()
|
|||
|
||||
return 1
|
||||
}
|
||||
|
||||
Truncate ()
|
||||
{
|
||||
for FILE in ${@}
|
||||
do
|
||||
: > ${FILE}
|
||||
done
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue