How to remove (cut) last n characters from strings
Sometimes you need to cut characters from string. If you need substring starting from characters 4 it is simple:
[you@host ~]$ test="abcdefgh" [you@host ~]$ echo $test | cut -c 4- defgh
If you want to remove last 3 characters you can do this using:
[you@host ~]$ echo ${test:0:${#test}-3} abcde
or
[you@host ~]$ echo $test | rev | cut -c 4- | rev abcde
I prefer the second method.
Komentarze
Log in or create a user account to comment.