source: postlfs/shells/tcsh.xml@ 86af98a

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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 86af98a was 86af98a, checked in by Manuel Canales Esparcia <manuel@…>, 19 years ago

Updated trunk sources to use DocBook DTD XML 4.4

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

  • Property mode set to 100644
File size: 4.9 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//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 tcsh-download-http "http://gd.tuwien.ac.at/utils/shells/tcsh/tcsh-&tcsh-version;.tar.gz">
8 <!ENTITY tcsh-download-ftp "ftp://ftp.fu-berlin.de/unix/shells/tcsh/tcsh-&tcsh-version;.tar.gz">
9 <!ENTITY tcsh-size "804 KB">
10 <!ENTITY tcsh-buildsize "9.0 MB">
11 <!ENTITY tcsh-time "0.16 SBU">
12 <!ENTITY tcsh-md5sum "11c0c9c9148652dc01270c4880d1cc6e">
13]>
14
15<sect1 id="tcsh" xreflabel="Tcsh-&tcsh-version;">
16<sect1info>
17<othername>$LastChangedBy$</othername>
18<date>$Date$</date>
19</sect1info>
20<?dbhtml filename="tcsh.html"?>
21<title>Tcsh-&tcsh-version;</title>
22<indexterm zone="tcsh">
23<primary sortas="a-Tcsh">Tcsh</primary></indexterm>
24
25<sect2>
26<title>Introduction to <application>Tcsh</application></title>
27
28<para>The <application>Tcsh</application> package contains "an enhanced but
29completely compatible version of the Berkeley Unix C shell (csh)". This is
30useful as an alternative shell for those who prefer C syntax to that of the
31bash shell, and also because some programs require the C shell in order to
32install.</para>
33
34<sect3><title>Package information</title>
35<itemizedlist spacing='compact'>
36<listitem><para>Download (HTTP): <ulink
37url="&tcsh-download-http;"/></para></listitem>
38<listitem><para>Download (FTP): <ulink
39url="&tcsh-download-ftp;"/></para></listitem>
40<listitem><para>Download MD5 sum: &tcsh-md5sum;</para></listitem>
41<listitem><para>Download size: &tcsh-size;</para></listitem>
42<listitem><para>Estimated disk space required:
43&tcsh-buildsize;</para></listitem>
44<listitem><para>Estimated build time:
45&tcsh-time;</para></listitem></itemizedlist>
46</sect3>
47
48</sect2>
49
50<sect2>
51<title>Installation of <application>Tcsh</application></title>
52
53<para>Install <application>Tcsh</application> by running the following
54commands:</para>
55
56<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
57make</command></userinput></screen>
58
59<para>Now, as the root user:</para>
60
61<screen><userinput role='root'><command>make install &amp;&amp;
62make install.man &amp;&amp;
63ln -sf /usr/bin/tcsh /bin/csh</command></userinput></screen>
64
65</sect2>
66
67<sect2>
68<title>Command explanations</title>
69
70<para><command>ln -sf /usr/bin/tcsh /bin/csh</command>: The
71<acronym>FHS</acronym> states that if there is a <application>C</application>
72shell installed, there should be a symlink from
73<filename>/bin/csh</filename> to it. This creates that symlink.</para>
74
75</sect2>
76
77<sect2>
78<title>Configuring <application>Tcsh</application></title>
79
80<sect3 id="tcsh-config"><title>Config files</title>
81<para>There are numerous configuration files for the C shell. Examples
82of these are <filename>/etc/csh.cshrc</filename>,
83<filename>/etc/csh.login</filename>,
84<filename>/etc/csh.logout</filename>,
85<filename>~/.tcshrc</filename>,
86<filename>~/.cshrc</filename>,
87<filename>~/.history</filename>,
88<filename>~/.cshdirs</filename>,
89<filename>~/.login</filename>,
90<filename>~/.logout</filename>. More information on these files can be
91found in the <filename>tcsh(1)</filename> man page.</para>
92
93<indexterm zone="tcsh tcsh-config">
94<primary sortas="e-etc-csh.cshrc">/etc/csh.cshrc</primary></indexterm>
95<indexterm zone="tcsh tcsh-config">
96<primary sortas="e-etc-csh.login">/etc/csh.login</primary></indexterm>
97<indexterm zone="tcsh tcsh-config">
98<primary sortas="e-etc-csh.logout">/etc/csh.logout</primary></indexterm>
99<indexterm zone="tcsh tcsh-config">
100<primary sortas="e-AA.tcshrc">~/.tcshrc</primary></indexterm>
101<indexterm zone="tcsh tcsh-config">
102<primary sortas="e-AA.cshrc">~/.cshrc</primary></indexterm>
103<indexterm zone="tcsh tcsh-config">
104<primary sortas="e-AA.history">~/.history</primary></indexterm>
105<indexterm zone="tcsh tcsh-config">
106<primary sortas="e-AA.cshdirs">~/.cshdirs</primary></indexterm>
107<indexterm zone="tcsh tcsh-config">
108<primary sortas="e-AA.login">~/.login</primary></indexterm>
109<indexterm zone="tcsh tcsh-config">
110<primary sortas="e-AA.logout">~/.logout</primary></indexterm>
111</sect3>
112
113</sect2>
114
115<sect2>
116<title>Contents</title>
117
118<segmentedlist>
119<segtitle>Installed Program</segtitle>
120<segtitle>Installed Libraries</segtitle>
121<segtitle>Installed Directories</segtitle>
122<seglistitem>
123<seg>tcsh</seg>
124<seg>None</seg>
125<seg>None</seg>
126</seglistitem>
127</segmentedlist>
128
129<variablelist>
130<bridgehead renderas="sect3">Short Descriptions</bridgehead>
131<?dbfo list-presentation="list"?>
132
133<varlistentry id="tcsh-prog">
134<term><command>tcsh</command></term>
135<listitem><para>is an enhanced but completely compatible version of the
136Berkeley Unix C shell, <command>csh</command>. It is usable as both an
137interactive shell and a script processor.</para>
138<indexterm zone="tcsh tcsh-prog">
139<primary sortas="b-tcsh">tcsh</primary></indexterm>
140</listitem>
141</varlistentry>
142</variablelist>
143
144</sect2>
145
146</sect1>
147
Note: See TracBrowser for help on using the repository browser.