I am using the below command but while running the command in linux, getting the below error.
sed -n \'/^[2015/01/01 03:46/,/^[2015/01/01 03:47/p\' < Inpu
escape [ i.e. \[ and change sed's delimiter to # or some character other than / so it will avoid you having to escape every /
[
\[
#
/
sed -n '\#^\[2015/01/01 03:46#,\#^\[2015/01/01 03:47#p'
Note: I escape the first octothorpe in front of each pattern so that sed can interpret it as a delimiter.