我對腳本有疑問。
例如,如果我打開第一個終端,終端將執行 ls 命令,之後我打開另一個終端,它執行 df -h 命令,當我打開第三個終端時,它會自動執行 top 命令。
當我打開終端時,該序列將同時出現。
請幫助我如何編寫它的腳本。
答案1
將其添加到您的~/.bashrc
:
r=$((RANDOM%3)) # generates a number in the range of 0 to 2
command[0]="ls"
command[1]="df -h"
command[2]="top"
eval ${command[$r]} # executes command
unset command r