Answers for "cut first 10 characters linux"

0

cut first 10 characters linux

tail -f logfile | grep org.springframework | cut -c 5-
Posted by: Guest on July-28-2020
-2

bash remove first character from line

sed 's/^.\{5\}//' logfile
Posted by: Guest on June-01-2020

Code answers related to "cut first 10 characters linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language