|
which seq (usually resides in /usr/bin/)
It's an individual executable command; should be part of the coreutils package if you're using linux.
if it exists on your system, modify the script
seq="/path/to/seq"
then modify the for statement to use the variable: for i in `${seq}...
|