I have 4 parameters adding to excetute file:
./project01.sh /* */ /^ ^/
and i want to make each parameters as variable but before that i want to modify it because it will be unconvenient for futher operation. So i would like to make it like "/*" so put it in "" and before each character give \ because some of then are special characters. I tried use like that:
beg1=echo $1 | sed(some change with $1)
but it change immediately $1 which is /* to direction /bin /boot itd. what can i do in that case?