get history without number code example
Example: get history command without line numbers
Just use cut command to cut first 8 chars and get history without numbers
history | cut -c 8-
Just use cut command to cut first 8 chars and get history without numbers
history | cut -c 8-