Skip to content
Snippets Groups Projects
Commit e1b3230a authored by kevineri.bonga's avatar kevineri.bonga
Browse files

initial commit

parents
No related branches found
No related tags found
No related merge requests found
Showing
with 32 additions and 0 deletions
bash/.swp 0 → 100644
File added
#!/bin/bash
# Combine input files in one
MAILS=$(cat $@)
# Remove capitals
MAILS=$(echo "$MAILS" | tr '[A-Z]' '[a-z]')
# sort the mails lines
MAILS=$(echo "$MAILS" | sort -k 1.1,1.1)
# remove redundant items
MAILS=$(echo "$MAILS" | uniq)
# save output
echo "$MAILS" > result.txt
File added
Hidden file to insure the folder goes on git
Some text
Some text
File added
not a real image
not a real image
not a real image
not a real image
not a real image
not a real image
not a real image
not a real image
not a real image
not a real image
not a real image
not a real image
not a real image
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment