I have a file and in that a line as below
command:mkdir -type -type_tag -yes -noadmin
I want to replace with some other string.
How can i do this? tried couple of sed command. but not able to get
through.
What about
sed 's/command:mkdir -type -type_tag -yes -noadmin/some other string/' file
or
sed '/command:mkdir -type -type_tag -yes -noadmin/ c\
some other string' file
--
D.