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 #9
- Discussions
Cut #9
Cut #9
Sort by
recency
|
54 Discussions
|
Please Login in order to post a comment
my bash solve awk -F'\t' '{for(i=2;i<=NF;i++){printf "%s%s", $i, (i
for((N=1;N<=100;N++)) do read line echo "$line" | cut -f2- done
cut -f2-
My simple code: