Difference between revisions of "Ed"

From CBLFS
Jump to navigationJump to search
Line 1: Line 1:
 
{| style="text-align: left; background-color: AliceBlue;"
 
{| style="text-align: left; background-color: AliceBlue;"
 
|-
 
|-
!Download Source (HTTP):
+
!Download Source:
 
| http://ftp.gnu.org/pub/gnu/ed/ed-{{Ed-Version}}.tar.bz2
 
| http://ftp.gnu.org/pub/gnu/ed/ed-{{Ed-Version}}.tar.bz2
|-
 
!Download Source (FTP):
 
| ftp://ftp.gnu.org/pub/gnu/ed/ed-{{Ed-Version}}.tar.bz2
 
 
|-
 
|-
 
|}
 
|}

Revision as of 13:49, 12 January 2007

Download Source: http://ftp.gnu.org/pub/gnu/ed/ed-1.4.tar.bz2

Introduction to Ed

<Package Description Needed>

Dependencies

Non-Multilib

Compile the package:

./configure --prefix=/usr --exec-prefix="" &&
make

Install the package

make install

Multilib

This package does not provide any libraries so only one installation is needed.

32Bit

Compile the package:

CC="gcc ${BUILD32}" ./configure --prefix=/usr --exec-prefix="" &&
make

Install the package

make install

N32

Compile the package:

CC="gcc ${BUILDN32}" ./configure --prefix=/usr --exec-prefix="" &&
make

Install the package

make install

64Bit

Compile the package:

CC="gcc ${BUILD64}" ./configure --prefix=/usr --exec-prefix="" &&
make

Install the package

make install

Contents

Installed Programs: ed, red
Installed Libraries: None
Installed Directories: None

Short Descriptions

ed is a line-oriented text editor.
red is a restricted ed—it can only edit files in the current directory and cannot execute shell commands.