• Skip to main content

Uly.me

cloud engineer

  • Home
  • About
  • Archives

tab

Replace spaces with comma

February 4, 2020

Here’s a simple sed command to replace multiple spaces into a comma delimited file.

sample.txt

one       two
three     four

one two three four

The sed command.

sed 's/ \+ /,/g' sample.txt > sample2.txt

sed 's/ \+ /,/g' sample.txt > sample2.txt

sample2.txt

one,two
three,four

one,two three,four

Filed Under: Linux Tagged With: comma, find, replace, sed, spaces, tab

Windows + Tab

September 18, 2019

Found another gem to display all Windows by using …

Windows + Tab

Windows + Tab

Filed Under: Misc Tagged With: all, display, tab, windows

Windows + Tab

January 9, 2019

Better late than never. How to display all open windows in Windows. Just press the Windows key + Tab.

Filed Under: Misc Tagged With: display, tab, windows

  • Home
  • About
  • Archives

Copyright © 2023