I'm trying to use this command:
for i in $(cat file); do echo "$whatever_text.$i">$i; done
which is for making each line a new file, I will get straight to the point here!
I want for bash to ignore the expressions such as "$" because for example if I have a line like this:
$a = 'string';
or multiple lines like that, it won't be printed like that, bash leaves only 'string'.