We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Linux Shell
- Text Processing
- Cut #6
- Discussions
Cut #6
Cut #6
Sort by
recency
|
81 Discussions
|
Please Login in order to post a comment
for(( N=1;N<=100;N++ )) do read line echo "$line" | cut -c13- done
for(( N=1;N<=100;N++ )) do read line echo "$line" | cut -c13- done
echo "$(cut -c13-)"
while read line do echo "${line:12}" done
whats wrong in the code, and failing in one test case? can anyone help?
cut -c 13-