I have a line with spaces in the start for example \" Hello world\". I want to insert this line to a specific line in a file. for example insert \" hello world\" to the next f
You only need one \ to input multiple blanks like this
\
sed -i "${line} i \ ${text}" $file