source: postlfs/shells/tcsh.xml@ 720a3c0

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 720a3c0 was 3e21aac3, checked in by Larry Lawrence <larry@…>, 20 years ago

update to zsh-4.2.1

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

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