first commit

This commit is contained in:
2023-08-13 18:29:37 +02:00
commit bbaec30752
6 changed files with 270 additions and 0 deletions

13
_bashrc Normal file
View File

@ -0,0 +1,13 @@
# 2023-08-09
export PS1='\n\[\e[32m\]\u@\h: \[\e[33m\]\w\[\e[0m\]\n> '
export BASH=/bin/bash
export SHELL=$BASH
export LS_OPTIONS='--color=auto'
alias ls='ls $LS_OPTIONS'
alias ll='ls $LS_OPTIONS -l'
alias la='ls $LS_OPTIONS -la'
export JAVA_HOME=/opt/graalvm
export PATH=$JAVA_HOME/bin:$PATH