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 -c 3 done
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 →