j
k
j a
j l
repeat 10 some_command
Found this on the web somewhere:
#!/bin/sh i=0 num=$1 shift while [ $(( i += 1 )) -le $num ]; do eval "$@" done
Worked fine. Thanks.
Back to the thread
Back to the list