在一个非常愚蠢的shell中添加/减去变量

前端之家收集整理的这篇文章主要介绍了在一个非常愚蠢的shell中添加/减去变量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在编写一个 shell脚本,它可以在我的本地/ bin / sh上运行(在Ubuntu 13.04上使用),但是我非常需要在一个愚蠢的盒子上运行它,因为对变量的操作我得到了一个错误
$((n2 - n1 + 1))

不起作用,我收到如下错误

Syntax error: you disabled math support for $((arith)) Syntax

我不太了解那里的sh,但我认为这件事是忙碌的.我怎么能在这个哑壳上做数学?

编辑小程序列表

~ # busyBox --list
[
arp
ash
cat
chgrp
chmod
chown
chroot
chvt
clear
cmp
cp
cut
date
dd
deallocvt
df
dmesg
du
echo
env
false
find
freeramdisk
ftpget
ftpput
grep
gunzip
gzip
hexdump
hwclock
ifconfig
ln
losetup
ls
md5sum
mkdir
mkfifo
mknod
mkswap
more
mount
mv
nslookup
ping
ping6
ps
pwd
renice
reset
rm
rmdir
route
seq
sh
sha1sum
sha256sum
sleep
sort
swapoff
swapon
switch_root
sync
tar
taskset
tee
telnet
test
tftp
time
top
touch
true
umount
uname
uniq
uptime
usleep
vconfig
vi
wget
whoami
yes
基于seq,sort -nr和uniq -u(POSIX兼容)的问题的另一个特定解决方案(n2 – n1 1).
foo()
{
    {
        seq 1 "$2"
        seq 0 "$1"
    } \
        | sort -n \
        | uniq -u \
        | grep -n "" \
        | sort -nr \
        | { read num; echo "${num%:*}"; }
}

$foo 100 2000
1901
原文链接:https://www.f2er.com/bash/384521.html

猜你在找的Bash相关文章