Files
build-gcc323/centos39-rootfs/etc/csh.login
T
John Doe edf4938d83 Add initial CentOS 3.9 root filesystem structure and essential scripts
- Created default user environment files: .bash_logout, .bash_profile, and .bashrc.
- Added symbolic links for dynamic linker and various libraries.
- Included essential binaries in /sbin for system management (e.g., fdisk, mkfs, hwclock).
- Implemented RPM verification script to check availability of required packages in CentOS vault.
- Established basic directory structure for logs and mail.
- Added a tarball for external libraries.
2025-11-04 00:05:11 +01:00

23 lines
409 B
Plaintext

# /etc/csh.login
# System wide environment and startup programs, for login setup
if ($?PATH) then
setenv PATH "${PATH}:/usr/X11R6/bin"
else
setenv PATH "/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin"
endif
limit coredumpsize unlimited
setenv HOSTNAME `/bin/hostname`
set history=1000
if ( -f $HOME/.inputrc ) then
setenv INPUTRC /etc/inputrc
endif
if ( $?tcsh ) then
bindkey "^[[3~" delete-char
endif