OSDN Git Service

info/GNU_which: Cleaning of GNU_which's info directory.
[linuxjm/jm.git] / info / GNU_which / draft / html / Li.html
diff --git a/info/GNU_which/draft/html/Li.html b/info/GNU_which/draft/html/Li.html
deleted file mode 100644 (file)
index d568c63..0000000
+++ /dev/null
@@ -1,88 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<!-- Created by GNU Texinfo 6.8, https://www.gnu.org/software/texinfo/ -->
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>例 (which: コマンドのフルパス表示)</title>
-
-<meta name="description" content="例 (which: コマンドのフルパス表示)">
-<meta name="keywords" content="例 (which: コマンドのフルパス表示)">
-<meta name="resource-type" content="document">
-<meta name="distribution" content="global">
-<meta name="Generator" content="makeinfo">
-<meta name="viewport" content="width=device-width,initial-scale=1">
-
-<link href="index.html" rel="start" title="Top">
-<link href="sakuin.html" rel="index" title="さくいん">
-<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
-<link href="index.html" rel="up" title="Top">
-<link href="bagu.html" rel="next" title="バグ">
-<link href="Fan-riZhi-.html" rel="prev" title="返り値">
-<style type="text/css">
-<!--
-a.copiable-anchor {visibility: hidden; text-decoration: none; line-height: 0em}
-a.summary-letter {text-decoration: none}
-blockquote.indentedblock {margin-right: 0em}
-div.display {margin-left: 3.2em}
-div.example {margin-left: 3.2em}
-kbd {font-style: oblique}
-pre.display {font-family: inherit}
-pre.format {font-family: inherit}
-pre.menu-comment {font-family: serif}
-pre.menu-preformatted {font-family: serif}
-span.nolinebreak {white-space: nowrap}
-span.roman {font-family: initial; font-weight: normal}
-span.sansserif {font-family: sans-serif; font-weight: normal}
-span:hover a.copiable-anchor {visibility: visible}
-ul.no-bullet {list-style: none}
--->
-</style>
-
-
-</head>
-
-<body lang="ja">
-<div class="chapter" id="g_t_4f8b">
-<div class="header">
-<p>
-Next: <a href="bagu.html" accesskey="n" rel="next">バグ</a>, Previous: <a href="Fan-riZhi-.html" accesskey="p" rel="prev">返り値</a>, Up: <a href="index.html" accesskey="u" rel="up"><code>which</code>: コマンドのフルパス表示</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="sakuin.html" title="Index" rel="index">Index</a>]</p>
-</div>
-<hr>
-<span id="Li"></span><h2 class="chapter">5 例</h2>
-<span id="index-Examples"></span>
-<span id="index-aliases_002c-handling-of"></span>
-
-<p>本ユーティリティーを利用するには、<code>which</code> に対して、エイリアスを追加する (C シェルの場合) 、あるいはシェル関数を追加する
-(Bourne シェル) 方法が推奨されます。たとえば以下のようにします。
-</p>
-<p>[ba]sh:
-</p>
-<div class="example">
-<pre class="example">which ()
-{
-  (alias; declare -f) | /usr/bin/which --tty-only --read-alias --read-functions --show-tilde --show-dot $@
-}
-export -f which
-</pre></div>
-
-<p>[t]csh:
-</p>
-<div class="example">
-<pre class="example">alias which 'alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'
-</pre></div>
-
-<p>この方法にすると、端末から起動した際には、わかりやすく ~/ や ./ を表示します。一方でスクリプトから実行した際には、フルパスを表示します。
-</p>
-<div class="example">
-<pre class="example">&gt; which q2
-~/bin/q2
-&gt; echo `which q2`
-/home/carlo/bin/q2
-</pre></div>
-
-</div>
-
-
-
-</body>
-</html>