Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
grep -o '.\{6\}$' /input/file
[gray]# or[/gray]
ruby -pe '$_=$_[-7..-1]' /input/file
[gray]# or[/gray]
sed 's/.*\(.\{6\}\)$/\1/' /input/file
[gray]# or[/gray]
awk '{print substr($0,length($0)-5)}' /input/file
[gray]# or[/gray]
gawk '{print gensub(/.*(.{6})$/,"\\1","")}' /input/file