source: general/sysutils/which.xml@ a31d341d

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since a31d341d was a31d341d, checked in by Randy McMurchy <randy@…>, 19 years ago

Added md5sums to Chapter 11 packages

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@3419 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 3.1 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY which-download-http "http://www.xs4all.nl/~carlo17/which/which-&which-version;.tar.gz">
8 <!ENTITY which-download-ftp "ftp://ftp.gnu.org/gnu/which/which-&which-version;.tar.gz">
9 <!ENTITY which-md5sum "830b83af48347a9a3520f561e47cbc9b">
10 <!ENTITY which-size "123 KB">
11 <!ENTITY which-buildsize "940 KB">
12 <!ENTITY which-time "0.03 SBU">
13]>
14
15<sect1 id="which" xreflabel="which-&which-version;">
16<sect1info>
17<othername>$LastChangedBy$</othername>
18<date>$Date$</date>
19</sect1info>
20<?dbhtml filename="which.html"?>
21<title><application>which</application>-&which-version; and alternatives</title>
22
23<para>The presence or absence of the which program in the main
24<acronym>LFS</acronym> book is probably one of the most contentious issues on
25the mailing lists. It has resulted in at least one flame war in the past.
26To hopefully put an end to this once and for all, presented here are two
27options for equipping your system with "which". The question of which "which"
28is for you to decide.</para>
29
30<para>The first option is to install the actual <acronym>GNU</acronym> program
31<emphasis>which</emphasis>.</para>
32
33<sect2>
34<title>Introduction to <application>which</application></title>
35
36<sect3><title>Package information</title>
37<itemizedlist spacing='compact'>
38<listitem><para>Download (HTTP): <ulink
39url="&which-download-http;"/></para></listitem>
40<listitem><para>Download (FTP): <ulink
41url="&which-download-ftp;"/></para></listitem>
42<listitem><para>Download MD5 sum: &which-md5sum;</para></listitem>
43<listitem><para>Download size: &which-size;</para></listitem>
44<listitem><para>Estimated disk space required:
45&which-buildsize;</para></listitem>
46<listitem><para>Estimated build time:
47&which-time;</para></listitem></itemizedlist>
48</sect3>
49
50</sect2>
51
52<sect2>
53<title>Installation of <application>which</application></title>
54
55<para>Install <application>which</application> by running the following
56commands:</para>
57
58<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
59make &amp;&amp;
60make install</command></userinput></screen>
61
62</sect2>
63
64<sect2>
65<title>Contents</title>
66
67<para>The <application>which</application> package contains
68<command>which</command>.</para>
69
70</sect2>
71
72<sect2><title>Description</title>
73
74<sect3><title>which</title>
75<para><command>which</command> shows the full path of (shell) commands.</para>
76</sect3>
77
78</sect2>
79
80<sect2>
81<title>The 'which' script</title>
82<para>The second option (for those who don't want to install the program)
83is to create a simple script:</para>
84<screen><userinput><command>cat &gt; /usr/bin/which &lt;&lt; "EOF"</command>
85#!/bin/bash
86type -pa "$@" | head -n 1 ; exit ${PIPESTATUS[0]}
87<command>EOF
88chmod 755 /usr/bin/which
89chown root:root /usr/bin/which</command></userinput></screen>
90<para>This should work OK and is probably the easiest solution
91for most cases, but is not the most comprehensive implementation.</para>
92</sect2>
93
94</sect1>
95
Note: See TracBrowser for help on using the repository browser.