Ignore:
Timestamp:
06/11/2004 07:06:47 AM (20 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
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
Children:
709f35f
Parents:
b5951ec
Message:

New XML Chapter 7 - Part II done

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • postlfs/shells/tcsh.xml

    rb5951ec r44f085a  
     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  " ">
     9  <!ENTITY tcsh-size          "804 KB">
     10  <!ENTITY tcsh-buildsize     "9.0 MB">
     11  <!ENTITY tcsh-time          "0.16 SBU">
     12
     13]>
     14
    115<sect1 id="tcsh" xreflabel="Tcsh-&tcsh-version;">
    216<?dbhtml filename="tcsh.html"?>
    317<title>Tcsh-&tcsh-version;</title>
    418
    5 &tcsh-intro;
    6 &tcsh-inst;
    7 &tcsh-exp;
    8 &tcsh-config;
    9 &tcsh-desc;
     19<sect2>
     20<title>Introduction to <application>Tcsh</application></title>
     21
     22<para>The <application>Tcsh</application> package contains "an enhanced but completely compatible
     23version of the Berkeley Unix C shell (csh)".  This is useful as an
     24alternative shell for those who prefer C syntax to that of the bash
     25shell, and also because some programs require the C shell in order to
     26install.</para>
     27
     28<sect3><title>Package information</title>
     29<itemizedlist spacing='compact'>
     30<listitem><para>Download (HTTP): <ulink
     31url="&tcsh-download-http;"/></para></listitem>
     32<listitem><para>Download (FTP): <ulink
     33url="&tcsh-download-ftp;"/></para></listitem>
     34<listitem><para>Download size: &tcsh-size;</para></listitem>
     35<listitem><para>Estimated Disk space required:
     36&tcsh-buildsize;</para></listitem>
     37<listitem><para>Estimated build time:
     38&tcsh-time;</para></listitem></itemizedlist>
     39</sect3>
     40
     41</sect2>
     42
     43<sect2>
     44<title>Installation of <application>Tcsh</application></title>
     45
     46<para>Install <application>Tcsh</application> by running the following commands:</para>
     47
     48<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
     49make &amp;&amp;
     50make install &amp;&amp;
     51make install.man &amp;&amp;
     52ln -sf /usr/bin/tcsh /bin/csh</command></userinput></screen>
     53
     54</sect2>
     55
     56<sect2>
     57<title>Command explanations</title>
     58
     59<para><command>ln -sf /usr/bin/tcsh /bin/csh</command>: The
     60<acronym>FHS</acronym> states that
     61if there is a <application>C</application> shell installed, there should be a symlink from
     62<filename>/bin/csh</filename> to it.  This creates that symlink.</para>
     63
     64</sect2>
     65
     66<sect2>
     67<title>Configuring <application>Tcsh</application></title>
     68
     69<sect3><title>Config files</title>
     70<para>There are numerous configuration files for the C shell.  Examples
     71of these are <filename>/etc/csh.cshrc</filename>,
     72<filename>/etc/csh.login</filename>, <filename>~/.tcshrc</filename>,
     73<filename>~/.cshrc</filename>, <filename>~/.history</filename>,
     74<filename>~/.login</filename>, <filename>~/.cshdirs</filename>,
     75<filename>/etc/csh.logout</filename>, <filename>~/.logout</filename> and
     76<filename>~/.logout</filename>.  More information on these files can be
     77found in the <filename>tcsh(1)</filename> man page.</para>
     78</sect3>
     79
     80</sect2>
     81
     82<sect2>
     83<title>Contents</title>
     84
     85<para>The <application>Tcsh</application> package contains
     86<command>tcsh</command>.</para>
     87
     88</sect2>
     89
     90<sect2><title>Description</title>
     91
     92<sect3><title>tcsh</title>
     93<para><command>tcsh</command> is an enhanced but completely compatible version of the
     94Berkeley Unix C shell, csh.  It is usable as both an interactive shell
     95and a script processor.</para></sect3>
     96
     97</sect2>
    1098
    1199</sect1>
Note: See TracChangeset for help on using the changeset viewer.