gpt4 book ai didi

bash shell 程序

转载 作者:行者123 更新时间:2023-11-29 09:41:48 25 4
gpt4 key购买 nike

!/bin/bash
echo Enter the num
read n
for i in { 1..10 }
do
m=$(( n*i ))
echo "$i * $n" = $m
done

我遇到错误

对于:8:非法号码:{请提出解决方案

最佳答案

这样做

#!/bin/bash
read -p "Enter the num: " n
for i in {1..10}
do
m=$(( n*i ))
echo "$i * $n" = $m
done

shebang 是错误的,并且不要在大括号扩展中留有空格,例如 {0..10},而不是 { 0..10 }

关于bash shell 程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2243845/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com