#!/bin/bash #----- # try-this # # seeing if a bash shell script can call another # bash shell script (in the current directory) # within backquotes to generate a list to loop through # # uses: classic-for-demo # # by: Sharon Tuttle # last modified: 2022-09-14 #----- for val in `./classic-for-demo` do echo "NEXT: $val" done