gpt4 book ai didi

linux - 使用 bash 列出脚本中使用的所有变量

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:48:39 25 4
gpt4 key购买 nike

我正在尝试列出所有变量,但这段代码不起作用,知道吗?

#!/bin/bash

read -p "Introduce el numero de alumnos: " alumnos

x=1

until [ $alumnos -lt $x ]; do
read -p "La nota del alumno $x es: " nota$x
let x=$x+1
done

( set -o posix ; set ) | less | echo

最佳答案

删除最后一个| echo 在管道中,它在那里没有任何意义,所以只写这个:

( set -o posix ; set ) | less

要仅列出以nota开头的变量,您可以添加一个grep:

( set -o posix ; set ) | grep ^nota | less

关于linux - 使用 bash 列出脚本中使用的所有变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38293201/

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