<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tech-Recipes &#187; Korn shell</title>
	<atom:link href="http://www.tech-recipes.com/category/unix/unix-shell/korn-shell/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tech-recipes.com</link>
	<description>Computer and technology tutorials and guides</description>
	<lastBuildDate>Thu, 09 Feb 2012 21:32:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Reading a list of data into a function using a script.</title>
		<link>http://www.tech-recipes.com/rx/955/reading-a-list-of-data-into-a-function-using-a-script/</link>
		<comments>http://www.tech-recipes.com/rx/955/reading-a-list-of-data-into-a-function-using-a-script/#comments</comments>
		<pubDate>Sun, 24 Jul 2005 10:15:09 +0000</pubDate>
		<dc:creator>Jimmy Selix</dc:creator>
				<category><![CDATA[Korn shell]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[Well, i&#8217;ve been a ksh geek for only prob 2 years now, but my job requires the managing of HUGE amounts of files and data (usually about 6500 files/items per query,set).  Managing and querying such large amounts of data by hand is impossible and just a waste of time when you can have a [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/955/reading-a-list-of-data-into-a-function-using-a-script/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Checking if a variable is a number in ksh</title>
		<link>http://www.tech-recipes.com/rx/756/checking-if-a-variable-is-a-number-in-ksh/</link>
		<comments>http://www.tech-recipes.com/rx/756/checking-if-a-variable-is-a-number-in-ksh/#comments</comments>
		<pubDate>Mon, 25 Oct 2004 03:01:20 +0000</pubDate>
		<dc:creator>u02sgb</dc:creator>
				<category><![CDATA[Korn shell]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[Being able to test if a variable is a number in the Korn shell is very useful but not immediately obvious&#8230;.

Due to shell programming not using any kind of type checking you can sometimes end up not knowing if a variable is a number or a string.  The script below will return TRUE or [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/756/checking-if-a-variable-is-a-number-in-ksh/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>appending a list of files to one file using xargs command</title>
		<link>http://www.tech-recipes.com/rx/647/appending-a-list-of-files-to-one-file-using-xargs-command/</link>
		<comments>http://www.tech-recipes.com/rx/647/appending-a-list-of-files-to-one-file-using-xargs-command/#comments</comments>
		<pubDate>Thu, 02 Sep 2004 07:26:14 +0000</pubDate>
		<dc:creator>Jimmy Selix</dc:creator>
				<category><![CDATA[Korn shell]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[This recipe explains how to use the xargs command in ksh to work with multiple files.  This recipe will show how to combine 10 files together into one file without manually doing a: cat file1 > bigfile,  cat file2 >> bigfile, etc.  The uses of this command are wide and very helpful; [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/647/appending-a-list-of-files-to-one-file-using-xargs-command/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Some Common AIX/Unix Commands</title>
		<link>http://www.tech-recipes.com/rx/569/some-common-aixunix-commands/</link>
		<comments>http://www.tech-recipes.com/rx/569/some-common-aixunix-commands/#comments</comments>
		<pubDate>Fri, 13 Aug 2004 14:31:46 +0000</pubDate>
		<dc:creator>Jimmy Selix</dc:creator>
				<category><![CDATA[Korn shell]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[This is more of an ingredients list than a true recipe.
Here are some common AIX commands that i&#8217;ve come to love and hate.  

•	lsps –a			list paging space
•	lsattr –El mem0		list current physical memory
•	extendlv hd6 16		doubled paging space from 512MB to 1024MB
				(only use with IBM direction)
•	smit lsmksysb		(list files on a tape from a mksysb)
•	lsdev –Cc disk		(shows [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/569/some-common-aixunix-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a  kornshell script with text-based menus in VI</title>
		<link>http://www.tech-recipes.com/rx/568/creating-a-kornshell-script-with-text-based-menus-in-vi/</link>
		<comments>http://www.tech-recipes.com/rx/568/creating-a-kornshell-script-with-text-based-menus-in-vi/#comments</comments>
		<pubDate>Fri, 13 Aug 2004 09:13:36 +0000</pubDate>
		<dc:creator>Jimmy Selix</dc:creator>
				<category><![CDATA[Korn shell]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[This recipe give a quick run-through on how to create text based menus for ksh scripts in VI.  My experience is with IBM AIX 4.x.  This a very, very basic recipe.


Create a new file (for example, test.ksh)
by typing:  vi test.ksh
the file test.ksh will be created and opened in VI.
in this file, we [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/568/creating-a-kornshell-script-with-text-based-menus-in-vi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Set an environment variable in Korn shell (ksh)</title>
		<link>http://www.tech-recipes.com/rx/181/set-an-environment-variable-in-korn-shell-ksh/</link>
		<comments>http://www.tech-recipes.com/rx/181/set-an-environment-variable-in-korn-shell-ksh/#comments</comments>
		<pubDate>Sat, 11 Oct 2003 01:05:54 +0000</pubDate>
		<dc:creator>qmchenry</dc:creator>
				<category><![CDATA[Korn shell]]></category>
		<category><![CDATA[environment variable]]></category>
		<category><![CDATA[ksh]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[
An environment variable can be set and exported in the Korn shell with a single command.  To set the EDITOR variable to vi, use:
export EDITOR=vi
This command can be placed in ~/.profile to be executed automatically at login, placed in a shell script, or executed manually.  Exporting a variable makes it available to other [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/181/set-an-environment-variable-in-korn-shell-ksh/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Enable vi ksh Command Line Editing</title>
		<link>http://www.tech-recipes.com/rx/113/enable-vi-ksh-command-line-editing/</link>
		<comments>http://www.tech-recipes.com/rx/113/enable-vi-ksh-command-line-editing/#comments</comments>
		<pubDate>Wed, 24 Sep 2003 22:30:03 +0000</pubDate>
		<dc:creator>qmchenry</dc:creator>
				<category><![CDATA[Korn shell]]></category>
		<category><![CDATA[command line]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[The Korn shell has the ability to utilize vi editor commands to edit commands in your history.  If you are familiar with the vi editor, you will love this feature.

To enable vi editing, type the following command, or place it in your .kshrc file:
set -o vi
Then you can use vi commands.  Press escape [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/113/enable-vi-ksh-command-line-editing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached (User agent is rejected)
Database Caching 3/11 queries in 0.867 seconds using memcached
Object Caching 453/482 objects using memcached

Served from: www.tech-recipes.com @ 2012-02-10 01:29:04 -->
