<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Unix filesystem basics: symlink example</title>
	<atom:link href="http://www.unixtutorial.org/2008/02/unix-symlink-example/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.unixtutorial.org/2008/02/unix-symlink-example/</link>
	<description>Learn UNIX</description>
	<lastBuildDate>Sun, 29 Aug 2010 16:01:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Alice in Linuxland :: Synchronisieren mit Sony Ericsson K750i :: September :: 2009</title>
		<link>http://www.unixtutorial.org/2008/02/unix-symlink-example/comment-page-1/#comment-5954</link>
		<dc:creator>Alice in Linuxland :: Synchronisieren mit Sony Ericsson K750i :: September :: 2009</dc:creator>
		<pubDate>Tue, 01 Sep 2009 13:38:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.unixtutorial.org/2008/02/unix-symlink-example/#comment-5954</guid>
		<description>[...] (f&#252;r Anf&#228;nger wie mich). Ich habe es dann nach mehrfachem rumprobieren und nachlesen mit dieser Beschreibung kapiert. Ich wei&#223; zwar nicht, ob man es genau so machen muss, aber so [...]</description>
		<content:encoded><![CDATA[<p>[...] (f&uuml;r Anf&auml;nger wie mich). Ich habe es dann nach mehrfachem rumprobieren und nachlesen mit dieser Beschreibung kapiert. Ich wei&szlig; zwar nicht, ob man es genau so machen muss, aber so [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://www.unixtutorial.org/2008/02/unix-symlink-example/comment-page-1/#comment-317</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Fri, 20 Jun 2008 13:39:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.unixtutorial.org/2008/02/unix-symlink-example/#comment-317</guid>
		<description>I have a shell script where get the install directory path. Sometimes this install directory path is a sybolic link. The script resolves the path to the real directory path and not the symbolic link path. How do get the symbolic link path itstead of the real directory path?

This is how I get the path:
  INST_HOME=`echo $CWD &#124; sed &#039;s&#124;/ims/IMS1/bin&#124;&#124;g&#039;`
  echo &quot;INST_HOME: \&quot;$INST_HOME\&quot; &quot;</description>
		<content:encoded><![CDATA[<p>I have a shell script where get the install directory path. Sometimes this install directory path is a sybolic link. The script resolves the path to the real directory path and not the symbolic link path. How do get the symbolic link path itstead of the real directory path?</p>
<p>This is how I get the path:<br />
  INST_HOME=`echo $CWD | sed 's|/ims/IMS1/bin||g'`<br />
  echo "INST_HOME: \"$INST_HOME\" "</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gleb Reys</title>
		<link>http://www.unixtutorial.org/2008/02/unix-symlink-example/comment-page-1/#comment-226</link>
		<dc:creator>Gleb Reys</dc:creator>
		<pubDate>Mon, 28 Apr 2008 09:11:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.unixtutorial.org/2008/02/unix-symlink-example/#comment-226</guid>
		<description>Hi Ganesh,

The first parameter to ln command is the SOURCE file - the one which already exists and you&#039;re trying to link to it. The second parameter is the DESTINATION file, the new one which will be created and point to the SOURCE file.

So from your examples it looks like the $XBOL_TOP/bin/my_file_name is the SOURCE link, and the $CE_TOP/bin/fndcpesr is the DESTINATION, just swap their order in the command line to get it all working.

Good luck!</description>
		<content:encoded><![CDATA[<p>Hi Ganesh,</p>
<p>The first parameter to ln command is the SOURCE file &#8211; the one which already exists and you're trying to link to it. The second parameter is the DESTINATION file, the new one which will be created and point to the SOURCE file.</p>
<p>So from your examples it looks like the $XBOL_TOP/bin/my_file_name is the SOURCE link, and the $CE_TOP/bin/fndcpesr is the DESTINATION, just swap their order in the command line to get it all working.</p>
<p>Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ganesh</title>
		<link>http://www.unixtutorial.org/2008/02/unix-symlink-example/comment-page-1/#comment-225</link>
		<dc:creator>Ganesh</dc:creator>
		<pubDate>Fri, 25 Apr 2008 15:08:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.unixtutorial.org/2008/02/unix-symlink-example/#comment-225</guid>
		<description>I want to create symbolic link for my ctl file I am using command as 
ln -s $FND_TOP/bin/fndcpesr $XBOL_TOP/bin/my file name
It gets created ..
But now I want to create that link with
ln -s $CE_TOP/bin/fndcpesr $XBOL_TOP/bin/my file name..
But now it gives error as &#039;FILE EXISTS&#039; ..
I also removed previous link..
Can anyone please help me out..


Thanks

Ganesh</description>
		<content:encoded><![CDATA[<p>I want to create symbolic link for my ctl file I am using command as<br />
ln -s $FND_TOP/bin/fndcpesr $XBOL_TOP/bin/my file name<br />
It gets created ..<br />
But now I want to create that link with<br />
ln -s $CE_TOP/bin/fndcpesr $XBOL_TOP/bin/my file name..<br />
But now it gives error as 'FILE EXISTS' ..<br />
I also removed previous link..<br />
Can anyone please help me out..</p>
<p>Thanks</p>
<p>Ganesh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ln unix command - make links and symlinks between files &#124; Unix Commands</title>
		<link>http://www.unixtutorial.org/2008/02/unix-symlink-example/comment-page-1/#comment-160</link>
		<dc:creator>ln unix command - make links and symlinks between files &#124; Unix Commands</dc:creator>
		<pubDate>Mon, 31 Mar 2008 12:33:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.unixtutorial.org/2008/02/unix-symlink-example/#comment-160</guid>
		<description>[...] Unix symlink example    Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages. [...]</description>
		<content:encoded><![CDATA[<p>[...] Unix symlink example    Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Show What a Symlink Points To &#124; UNIX Tutorial: Learn UNIX</title>
		<link>http://www.unixtutorial.org/2008/02/unix-symlink-example/comment-page-1/#comment-141</link>
		<dc:creator>Show What a Symlink Points To &#124; UNIX Tutorial: Learn UNIX</dc:creator>
		<pubDate>Wed, 26 Mar 2008 17:01:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.unixtutorial.org/2008/02/unix-symlink-example/#comment-141</guid>
		<description>[...] of all, if you haven&#8217;t already done so - read my Unix Symlink Example post to learn what a symlink is and to refresh your mind about creating [...]</description>
		<content:encoded><![CDATA[<p>[...] of all, if you haven't already done so &#8211; read my Unix Symlink Example post to learn what a symlink is and to refresh your mind about creating [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
