source: postlfs/shells/tcsh.xml@ 5cd0959d

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 5cd0959d was 5cd0959d, checked in by Archaic <archaic@…>, 20 years ago

Resetting keywords

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

  • Property mode set to 100644
File size: 3.3 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 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
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
23<sect2>
24<title>Introduction to <application>Tcsh</application></title>
25
26<para>The <application>Tcsh</application> package contains "an enhanced but
27completely compatible version of the Berkeley Unix C shell (csh)". This is
28useful as an alternative shell for those who prefer C syntax to that of the
29bash shell, and also because some programs require the C shell in order to
30install.</para>
31
32<sect3><title>Package information</title>
33<itemizedlist spacing='compact'>
34<listitem><para>Download (HTTP): <ulink
35url="&tcsh-download-http;"/></para></listitem>
36<listitem><para>Download (FTP): <ulink
37url="&tcsh-download-ftp;"/></para></listitem>
38<listitem><para>Download size: &tcsh-size;</para></listitem>
39<listitem><para>Estimated Disk space required:
40&tcsh-buildsize;</para></listitem>
41<listitem><para>Estimated build time:
42&tcsh-time;</para></listitem></itemizedlist>
43</sect3>
44
45</sect2>
46
47<sect2>
48<title>Installation of <application>Tcsh</application></title>
49
50<para>Install <application>Tcsh</application> by running the following
51commands:</para>
52
53<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
54make &amp;&amp;
55make install &amp;&amp;
56make install.man &amp;&amp;
57ln -sf /usr/bin/tcsh /bin/csh</command></userinput></screen>
58
59</sect2>
60
61<sect2>
62<title>Command explanations</title>
63
64<para><command>ln -sf /usr/bin/tcsh /bin/csh</command>: The
65<acronym>FHS</acronym> states that if there is a <application>C</application>
66shell installed, there should be a symlink from
67<filename>/bin/csh</filename> to it. This creates that symlink.</para>
68
69</sect2>
70
71<sect2>
72<title>Configuring <application>Tcsh</application></title>
73
74<sect3><title>Config files</title>
75<para>There are numerous configuration files for the C shell. Examples
76of these are <filename>/etc/csh.cshrc</filename>,
77<filename>/etc/csh.login</filename>, <filename>~/.tcshrc</filename>,
78<filename>~/.cshrc</filename>, <filename>~/.history</filename>,
79<filename>~/.login</filename>, <filename>~/.cshdirs</filename>,
80<filename>/etc/csh.logout</filename>, <filename>~/.logout</filename> and
81<filename>~/.logout</filename>. More information on these files can be
82found in the <filename>tcsh(1)</filename> man page.</para>
83</sect3>
84
85</sect2>
86
87<sect2>
88<title>Contents</title>
89
90<para>The <application>Tcsh</application> package contains
91<command>tcsh</command>.</para>
92
93</sect2>
94
95<sect2><title>Description</title>
96
97<sect3><title>tcsh</title>
98<para><command>tcsh</command> is an enhanced but completely compatible version
99of the Berkeley Unix C shell, csh. It is usable as both an interactive shell
100and a script processor.</para></sect3>
101
102</sect2>
103
104</sect1>
105
Note: See TracBrowser for help on using the repository browser.