You are viewing a single comment's thread. Return to all comments →
#!/bin/bash N=1 while [[ $N -ge 1 && $N -le 100 ]]; do let N++ read n echo "$n" | cut -b 2-7 done
Seems like cookies are disabled on this browser, please enable them to open this website
Cut #3
You are viewing a single comment's thread. Return to all comments →