Commit 1a707e48 authored by Vitaly Lipatov's avatar Vitaly Lipatov

estrlist: add list command

parent 36d12f98
......@@ -38,12 +38,17 @@ strip_spaces()
echo "$*" | filter_strip_spaces
}
union()
list()
{
local i
for i in $@ ; do
echo "$i"
done | sort -u
done
}
union()
{
list $@ | sort -u
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment