cut command

1
2
3
4
5
6
echo abc | cut -c 2-
# bc

echo abcdef | cut -c 1-3

# abc