Here’s a simple sed command to replace multiple spaces into a comma delimited file.
sample.txt
one two three four |
The sed command.
sed 's/ \+ /,/g' sample.txt > sample2.txt |
sample2.txt
one,two three,four |
cloud engineer
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
Found another gem to display all Windows by using …
Windows + Tab |
Windows + Tab
Better late than never. How to display all open windows in Windows. Just press the Windows key + Tab.