Skip to content

c4arl0s/tr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

tr

Snippets to use tr command

How to strip multiple spaces to one using sed?

First output:

ls /bin | grep kill
-rwxr-xr-x  1 root  wheel   134352 Dec  2  2022 kill

Solution:

ls /bin | grep kill | tr -s " "

Output:

-rwxr-xr-x 1 root wheel 134352 Dec 2 2022 kill

About

Snippets to use tr command

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages