Skip to content
Snippets Groups Projects
Commit c87463d9 authored by Josh Brooks's avatar Josh Brooks
Browse files

Fix over appending group members file

parent 14d715e1
Branches josh/groupCreationScript
No related tags found
No related merge requests found
......@@ -2,6 +2,10 @@
ouputFile=groupMembers
if [ -f "$ouputFile" ]
then
rm $ouputFile
fi
if [ $# -eq 0 ]; then
echo "No arguments provided. Please provide the path to client logs.
......@@ -11,8 +15,6 @@ if [ $# -eq 0 ]; then
exit 1
fi
# This
touch $ouputFile
for file in "$@"
do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment