You are viewing a single comment's thread. Return to all comments →
cut -c3
cut is a command-line tool used to extract sections from each line of input — by bytes, characters, or fields.
Seems like cookies are disabled on this browser, please enable them to open this website
Cut #1
You are viewing a single comment's thread. Return to all comments →
cut -c3
echo "hello" |cut -c3
output = l
cut is a command-line tool used to extract sections from each line of input — by bytes, characters, or fields.