Affiliate Marketing Get link Facebook X Pinterest Email Other Apps - July 24, 2024 Pls Subscribe this channel Subscribe ® Registered teknosys.in Get link Facebook X Pinterest Email Other Apps
sh read file line by line Get link Facebook X Pinterest Email Other Apps - March 16, 2017 #!/bin/bash while read LINE do IFS='/'; read -r -a array <<< "$LINE" DATA=''; for index in "${!array[@]}" do if [ $2 == "${array[index]}" ] then DATA="${array[index]}" c=0; while [ $c -le $index ] do echo -n "${array[c]}/" c=$(( $c + 1 )); done echo '' fi done done < $1 read more Get link Facebook X Pinterest Email Other Apps Comments
Comments