myunixposts.blogspot.com
My Unix Posts: March 2011
http://myunixposts.blogspot.com/2011_03_01_archive.html
Wednesday, March 30, 2011. VAR=$( 1 3*2 ). VAR=$( (1 3)*2 ). Links to this post. Filename Substitution with Wildcards. 0 or more characters. Display all shell scripts. Display all files starting with the letters 'go' and any possible combination of other characters afterwards. Display all files starting with 'go' and two unknown characters. Display all files starting with 'go' and one more character of either 'a', 'b', 'c', or 'd'. Links to this post. Array variable - holds 0 or more values. Special vari...
abuzzfromjava.blogspot.com
A Buzz from Java: Functions: Class, Instance and Constructor
http://abuzzfromjava.blogspot.com/2010/03/functions-class-instance-and.html
A Buzz from Java. Thursday, March 11, 2010. Functions: Class, Instance and Constructor. Public class testparent { public static void main(String[] args) { parent.hello(); / 3. class function parent p1 = new parent(); / 1. constructor function p1.display(); / 2. instance function parent p2 = new parent("ALICE"); / 1. overload constructor function p2.display(); / 2. instance function p1.display(); / 2. instance function } }. Parent.java = super class. Subscribe to: Post Comments (Atom). Tell me you can't d...
minnieperl.blogspot.com
Minnie Perl: Sorting Example
http://minnieperl.blogspot.com/2010/03/sorting-example.html
A little bit of what I've learned about Perl, and several examples of code. Wednesday, March 10, 2010. Print " n";. Print " - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - n";. Print " uniqsort.pl: n";. Print " This program will list the unique values found in the column(s) n";. Print " specified by the user from the file named. The output is sorted n";. Print " and shows a record count per value. n";. Print " n";. Print " - - n";. My $Directory = STDIN ; # Store what's typed in. EndPos...
minnieperl.blogspot.com
Minnie Perl: Example of Matching and Moving Data
http://minnieperl.blogspot.com/2010/03/example-of-matching-and-moving-data.html
A little bit of what I've learned about Perl, and several examples of code. Wednesday, March 10, 2010. Example of Matching and Moving Data. Print " n";. Print " - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - n";. Print " movedat.pl: n";. Print " Move data from one file to another based on matching columns. A third file is n";. Print " created with all data from the first file and the columns specified from the 2nd. n";. Print " n";. Print " n";. My $OutFile = STDIN ; # ...
myunixposts.blogspot.com
My Unix Posts: View File Content
http://myunixposts.blogspot.com/2011/03/view-file-content.html
Wednesday, March 30, 2011. View last 10 lines of a file. View top # lines of a file. View top 10 lines of a file. Subscribe to: Post Comments (Atom). Filename Substitution with Wildcards. Compare Files and Directories. Change / Make Directory. Just Some Miscellaneous Notes. Documenting a Unix Script. SQLPlus in a Here Document. There was an error in this gadget. Want to drive me crazy? Tell me you can't do that in SQL. Anyway, hope you enjoy the blog. View my complete profile.
myunixposts.blogspot.com
My Unix Posts: Miscellaneous Unix Commands
http://myunixposts.blogspot.com/2011/03/miscellaneous-unix-commands.html
Wednesday, March 30, 2011. Type two commands at a time. Cmd1 ; cmd2. Spell check a file. Reset terminal: if mistakenly viewed a binary file with cat. Append results of a command onto an existing file. Write results of a command to a file. Ftp file to host1 from host2. Search files for a string. Display '#' lines on both sides. C = display a count. V = display non-matching lines. I = ignore case. Subscribe to: Post Comments (Atom). Filename Substitution with Wildcards. Compare Files and Directories.
myunixposts.blogspot.com
My Unix Posts: Filename Substitution with Wildcards
http://myunixposts.blogspot.com/2011/03/filename-substitution-with-wildcards.html
Wednesday, March 30, 2011. Filename Substitution with Wildcards. 0 or more characters. Display all shell scripts. Display all files starting with the letters 'go' and any possible combination of other characters afterwards. Display all files starting with 'go' and two unknown characters. Display all files starting with 'go' and one more character of either 'a', 'b', 'c', or 'd'. Display all files starting with 'go' and one more character in the 'a' to 'd' range. Subscribe to: Post Comments (Atom). I took...
myunixposts.blogspot.com
My Unix Posts: System Information
http://myunixposts.blogspot.com/2011/03/system-information.html
Wednesday, March 30, 2011. Subscribe to: Post Comments (Atom). Filename Substitution with Wildcards. Compare Files and Directories. Change / Make Directory. Just Some Miscellaneous Notes. Documenting a Unix Script. SQLPlus in a Here Document. There was an error in this gadget. I've been in IT almost since birth. I've done many things with many languages and operating systems, but finally found a home when I started learning Oracle. Want to drive me crazy? View my complete profile.
abuzzfromjava.blogspot.com
A Buzz from Java: March 2010
http://abuzzfromjava.blogspot.com/2010_03_01_archive.html
A Buzz from Java. Thursday, March 11, 2010. Banking { public void withdraw(); public void deposit(); public void balanceCheck(); }. Public class saving implements. Functions: Class, Instance and Constructor. Parent.java = super class. Public class parent { / Data Members - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -. Public void display() { System.out.printf("TOTAL %d NAME: %s n", total, name ); }. Static public void hello() { System.out.printf("HELLO.Welcome. n"); } }. SQL is just plain ...