28 lines
842 B
Bash
28 lines
842 B
Bash
# /etc/skel/.bashrc
|
|
#
|
|
# This file is sourced by all *interactive* bash shells on startup,
|
|
# including some apparently interactive shells such as scp and rcp
|
|
# that can't tolerate any output. So make sure this doesn't display
|
|
# anything or bad things will happen !
|
|
|
|
shopt -s histappend
|
|
export HISTFILESIZE=
|
|
export HISTSIZE=
|
|
export HISTTIMEFORMAT="%d/%m/%y %T "
|
|
|
|
# Test for an interactive shell. There is no need to set anything
|
|
# past this point for scp and rcp, and it's important to refrain from
|
|
# outputting anything in those cases.
|
|
if [[ $- != *i* ]] ; then
|
|
# Shell is non-interactive. Be done now!
|
|
return
|
|
fi
|
|
|
|
alias e="emacs -nw"
|
|
alias ll="ls -lhta"
|
|
export PS1="\w>"
|
|
export MACHINE="sheila"
|
|
export PATH="/home/mod/EMBEDDED/arm-gnu-toolchain-14.2.rel1-x86_64-arm-none-eabi/bin:$PATH"
|
|
|
|
export OLLAMA_MODELS="/home/mod/mydrive1/ollama/"
|