文件名称:abs:ABS编程语言的家:shell脚本编写的乐趣
文件大小:1.73MB
文件格式:ZIP
更新时间:2024-02-20 12:13:55
shell bash programming-language golang scripting
ABS编程语言 当您在终端上编写脚本时,ABS是一种最有效的编程语言。 它试图将诸如Python或Ruby之类的语言的优雅结合到Bash的便利中。 tz = ` cat /etc/timezone ` continent, city = tz.split( " / " ) echo( " Best city in the world? " ) selection = stdin () if selection == city { echo( " You might be biased... " ) } 实际观看: 让我们尝试获取我们的IP地址,并打印其部分的总和(如果它大于100)。这是在Bash中执行以下操作的方法: # Simple program that fetches your IP and sums it up RES= $( curl -s ' https://api.ipify.org?format=json ' || " ERR " ) if [ " $RES " = " ERR " ] ; then echo " An error occurre