Hello, i'm just a new newbie and i'm happy to meet you, i think that is a good thing to present myself but i don't found a section for do that, and i will do it here.
Hello everyone, my name is Marco and i'm from Italy 19 years old and i'm n00b, i'm a MAC user (yeah don't kill me for that xD) and i hope to learn more about the Unix world, i have just a problem
i'm unfriendly with unix shell, she hates me and very many times i insult them, and i need someone that help me to make friendly the unix shell, i hope to find friends and someone that will like to give me his help. 
That is my stupid problem:
i have to encrypt one text file to base64 for 1024 times, and every time i crypt it, i have to add a word, like for example LOL= for every string, here a example:
encodemeLOL= > ZW5jb2RlbWVMT0w9IA==LOL= > Wlc1amIyUmxiV1ZNVDB3OUlBPT1MT0w9LOL= > V2xjMWFtSXlVbXhpVjFaTlZEQjNPVWxCUFQxTVQwdzlMT0w9LOL=
and i have to do that for 1024 times, now i had try to create a small script for unix shell:
echo �LOL=� >> /Users/Supermarco/Desktop/encrypt.txt && openssl -enc -base64 -in /Users/Supermarco/Desktop/encrypt.txt -out /Users/Supermarco/Desktop/lol2.txt && mv /Users/Supermarco/Desktop/lol2.txt encrypt.txt
i have tried also to do that
echo �LOL=� >> /Users/Supermarco/Desktop/encrypt.txt && openssl -enc -base64 -in /Users/Supermarco/Desktop/encrypt.txt -out /Users/Supermarco/Desktop/encrypt.txt
but i will check the text file and i see that all text was deleted.
don't worry, i have first put a text to crypt on the text before launch the command but i don't have got no results, can you tell me a correct command to launch for encrypt that text?
or better good, can you add on the script a command that will automatize the crypt for encrypting 1024 times without that i need to launch the command 1024 times? i hope that you have understand with my bad english. 
Have a nice day, and best regards
Marco
it's perfect, but the problem is that i have to add the same word on every string i will generate...