script — make typescript of terminal session

STITCHED (C) FROM : Virtual Terminals commandline session $script Script started, file is typescript $ls Algorithms bookmark config-files firewall kernel_start.asm loader scripts animation books debian GD kernel_start.s Mail test art.text bugs-general debian-howtos jeffrin language ovlfose typescript beautifulwork cairo Docs kernel linux README web.application $ls -a . beautifulwork config-files GD kernel_start.s ovlfose web.application .. bookmark debian …

arrays.pl

A UNIX Command $cat arrays.pl # Simple array constructs. @fred = (“How”, “are”, “you”, “today?”); print “\@fred contains (@fred).\n”; $mike = $fred[1]; print “$mike $fred[3]\n”; # The array name in a scalar context gives the size. $fredsize = @fred; print ‘@fred has ‘, “$fredsize elements.\n”; # The $#name gives the max subscript (size less one). …