ERROR: Checkout of Git remote ‘local/path’ aborted because it references a local directory, which may be insecure. You can allow local checkouts anyway by setting the system property ‘hudson.plugins.git.GitSCM.ALLOW_LOCAL_CHECKOUT’ to true. Finished: F…
【脚本1】打印形状
打印等腰三角形、直角三角形、倒直角三角形、菱形
#!/bin/bash
\# 等腰三角形
read \-p "Please input the length: " n
for i in \seq 1 $n\
do for ((j\$n;j>i;j--)) do echo \-n " " done for m in \seq 1 $i\ do…