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 `/’ …

/proc/meminfo related

# cat /proc/meminfo MemTotal: 1995608 kB MemFree: 77804 kB Buffers: 226640 kB Cached: 306916 kB SwapCached: 1256 kB Active: 817952 kB Inactive: 458696 kB Active(anon): 553568 kB Inactive(anon): 193212 kB Active(file): 264384 kB Inactive(file): 2100484 kB Unevictable: 4696 kB Mlocked: 4696 kB SwapTotal: 5843964 kB SwapFree: 5838604 kB Dirty: 752 kB Writeback: 0 kB AnonPages: …

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 …