#!/bin/bash# Declare a string array with typedeclare -a StringArray=("$(pwd)" "$(cd)" )# Read the array values with spacefor val in "${StringArray[*]}"; do echo $valdone
↧
guys how can i get output for both linux commands
↧