Re: sed and tab

2023-08-22 Thread Chris Bennett
On Tue, Aug 22, 2023 at 04:03:57PM +0300, kasak wrote: > > > Oh, thanks! I didn't know about that ctrl+v tab feature! > Just so you know, ctrl+ other stuff also works. I'll let you experiment and discover those. -- Chris Bennett

Re: sed and tab

2023-08-22 Thread kasak
22.08.2023 15:34, Stuart Henderson пишет: On 2023-08-22, kasak wrote: Hello misc! I'm in trouble with sed! I need to insert tab in some places, but no luck :( in linux it works: [kasak@kasakoff ~]$ echo 'one two three' | sed s/two/\\ttwo/ one     two three in OpenBSD it just add t:

Re: sed and tab

2023-08-22 Thread Stuart Henderson
On 2023-08-22, kasak wrote: > Hello misc! > > I'm in trouble with sed! > > I need to insert tab in some places, but no luck :( > > in linux it works: > > [kasak@kasakoff ~]$ echo 'one two three' | sed s/two/\\ttwo/ > one     two three > > in OpenBSD it just add t: > > kasak@OpenBSD:~$ echo 'one

Re: sed and tab

2023-08-22 Thread Pontus Stenetorp
On Tue 22 Aug 2023, kasak wrote: > > I'm in trouble with sed! > > I need to insert tab in some places, but no luck :( > > in linux it works: > > [kasak@kasakoff ~]$ echo 'one two three' | sed s/two/\\ttwo/ > one     two three > > in OpenBSD it just add t: > > kasak@OpenBSD:~$ echo 'one two

sed and tab

2023-08-22 Thread kasak
Hello misc! I'm in trouble with sed! I need to insert tab in some places, but no luck :( in linux it works: [kasak@kasakoff ~]$ echo 'one two three' | sed s/two/\\ttwo/ one     two three in OpenBSD it just add t: kasak@OpenBSD:~$ echo 'one two three' | sed s/two/\\ttwo/ one ttwo three