mirror of
https://github.com/54shady/kernel_drivers_examples.git
synced 2026-01-13 16:02:37 +00:00
15 lines
225 B
Bash
Executable File
15 lines
225 B
Bash
Executable File
# Ash profile
|
|
# vim: syntax=sh
|
|
|
|
# No core files by default
|
|
ulimit -S -c 0 > /dev/null 2>&1
|
|
|
|
USER="`id -un`"
|
|
LOGNAME=$USER
|
|
PS1='[\u@\h \W]\# '
|
|
PATH=$PATH:/usr/local/bin
|
|
|
|
HOSTNAME=`/bin/hostname`
|
|
|
|
export USER LOGNAME PS1 PATH
|