#!/usr/bin/env bash
我正在使用python中的bash命令我在Red hat杂志中发现这个例子,tail命令不会产生任何输出。我想了解为什么它失败了,我也尝试导入子进程,但这只是挂起。
#Create Commands**strong text**
SPACE=`df -h`
MESSAGES=`tail /var/log/messages`
#Assign to an array(list in Python)
cmds=("$MESSAGES" "$SPACE")
#iteration loop
count=0
for cmd in "${cmds[@]}"; do
count=$((count + 1))
printf "Running Command Number %s \n" $count
echo "$cmd"
done