2010-11-22

novotvary

úsmešne - úsmevne a zároven úspešne

2010-07-14

how to insert a text at the beginning of the file using sed

trtko@lucidogen:/tmp$ cat > testosteron
1
2
3
4
5
trtko@lucidogen:/tmp$ cat testosteron
1
2
3
4
5
trtko@lucidogen:/tmp$ sed -i '1i----' testosteron
trtko@lucidogen:/tmp$ sed -i '1i***' testosteron
trtko@lucidogen:/tmp$ sed -i'' '1iWWW' testosteron
trtko@lucidogen:/tmp$ cat testosteron
WWW
***
----
1
2
3
4
5