Xose Vazquez Perez
2014-10-02 10:27:51 UTC
hi,
- First case with command "i", it works OK.
$ cat f.txt
1
2
3
$ sed -i '1 i\Hello' f.txt
$ cat f.txt
Hello
1
2
3
- Second case with command "r", It doesn't work.
$ cat f2.txt
1
2
3
$ cat h.txt
Hello
$ sed -i '1 r h.txt' f2.txt
$ cat f2.txt
1
Hello
2
3
In second case the line with "Hello" must be the first one,
like the first case with the command "i"
-thanks-
- First case with command "i", it works OK.
$ cat f.txt
1
2
3
$ sed -i '1 i\Hello' f.txt
$ cat f.txt
Hello
1
2
3
- Second case with command "r", It doesn't work.
$ cat f2.txt
1
2
3
$ cat h.txt
Hello
$ sed -i '1 r h.txt' f2.txt
$ cat f2.txt
1
Hello
2
3
In second case the line with "Hello" must be the first one,
like the first case with the command "i"
-thanks-