debian package arduino

GET THE HANG [ arduino ] $ 4.2.36 2 502—> apt-cache show arduino Package: arduino Version: 1:1.0.1+dfsg-7 Installed-Size: 1293 Maintainer: Scott Howard Architecture: all Depends: default-jre | java6-runtime, libjna-java, librxtx-java (>= 2.2pre2-3), arduino-core (= 1:1.0.1+dfsg-7) Recommends: extra-xdg-menus, policykit-1 Description-en: AVR development board IDE and built-in libraries Arduino is an open-source electronics prototyping platform based on …

IFS Internal Field Separator — GNU Bash.

$ 4.2.36 1 501—> echo $* $ 4.2.36 2 502—> echo “$*” $ 4.2.36 3 503—> echo $IFS $ 4.2.36 4 504—> set $IFS=rightleftwrong $ 4.2.36 5 505—> echo $* =rightleftwrong $ 4.2.36 6 506—> echo “$*” =rightleftwrong $ 4.2.36 7 507—> echo $IFS $ 4.2.36 8 508—> echo $* =rightleftwrong $ 4.2.36 9 509—> …

bash -r restricted shell

$ 4.2.36 8 508—> bash -r $ 4.2.36 1 501—> ls Algorithms bookmark bugs-general debian-howtos firewall kernel linux README beautifulwork books config-files Docs https: language ovlfose $ 4.2.36 2 502—> cd .. bash: cd: restricted $ 4.2.36 3 503—> cd / bash: cd: restricted $ 4.2.36 4 504—> ./firewall/firewall.bw bash: ./firewall/firewall.bw: restricted: cannot specify `/’ …

SHLVL – Incremented by one each time an instance of bash is started

commandline session $ 4.2.36 2 501—> echo $SHLVL 1 $ 4.2.36 3 502—> echo $SHLVL 1 $ 4.2.36 4 503—> bash $ 4.2.36 1 500—> echo $SHLVL 2 $ 4.2.36 2 501—> logout bash: logout: not login shell: use `exit’ $ 4.2.36 3 502—> exit exit $ 4.2.36 5 504—> echo $SHLVL 1 $ 4.2.36 …

BASH_VERSINFO A readonly array variable

commandline session $ 4.2.36 2 501—> echo BASH_VERSINFO[0] BASH_VERSINFO[0] $ 4.2.36 3 502—> echo $BASH_VERSINFO[0] 4[0] $ 4.2.36 4 503—> echo $BASH_VERSINFO 4 $ 4.2.36 5 504—> echo $BASH_VERSINFO[1] 4[1] $ 4.2.36 6 505—> echo BASH_VERSINFO[1] BASH_VERSINFO[1] $ 4.2.36 7 506—> echo “BASH_VERSINFO[1]” BASH_VERSINFO[1] $ 4.2.36 8 507—> echo BASH_VERSINFO(1) bash: syntax error near unexpected …