fix profile.conf line endind

This commit is contained in:
fatalerrors
2026-03-10 11:02:31 +01:00
parent 7ca0a6fb88
commit 02a1e25df2

View File

@@ -1,50 +1,50 @@
[system] [system]
# System section is used to set system-wide variables, such as PATH, environment variables, and other # System section is used to set Bash behavior and other system related variables,
# settings that affect the entire system. It is also a good place to set some global variables that can be used by the profile or its functions, such as the default editor and pager. # such as the default pager, the terminal type, etc.
# Set bash history # Set bash history
HISTSIZE=50000 HISTSIZE=50000
HISTIGNORE="&:[bf]g:exit" HISTIGNORE="&:[bf]g:exit"
# Set default pager # Set default pager
PAGER=less PAGER=less
# More colors # Set terminal colors behavior
TERM=xterm-256color TERM=xterm-256color
[info] [info]
# Default city for weather forcast # Default city for weather forcast
DEFAULT_CITY="Toulouse" DEFAULT_CITY="Toulouse"
[general] [general]
# General section allow to set any variable that can be used by the profile or its functions. It is # General section allow to set any variable that can be used by the profile or its functions. It is
# also a good place to set some global variables that can be used by the profile or its functions, such as # also a good place to set freely global variables for personal use.
# the compilation flags and make options. # Set some compiling values
# Set some compiling values CFLAGS="-O2 -pipe -march=native"
CFLAGS="-O2 -pipe -march=native" CXXFLAGS="$CFLAGS"
MAKEFLAGS='-j12' MAKEFLAGS='-j12'
PKGSOURCES='/share/src/archives' PKGSOURCES='/share/src/archives'
[aliases] [aliases]
ll='ls -laFh --color=auto' ll='ls -laFh --color=auto'
la='ls -Ah --color=auto' la='ls -Ah --color=auto'
l='ls -CF --color=auto' l='ls -CF --color=auto'
ls='ls --color=auto' ls='ls --color=auto'
grep='grep --color=auto' grep='grep --color=auto'
egrep='egrep --color=auto' egrep='egrep --color=auto'
fgrep='fgrep --color=auto' fgrep='fgrep --color=auto'
qfind="find . -name " qfind="find . -name "
mkck='make check' mkck='make check'
mkin='make install' mkin='make install'
mkdin='make DESTDIR=$PWD/dest-install install' mkdin='make DESTDIR=$PWD/dest-install install'
ssh='ssh -Y' ssh='ssh -Y'
wget='wget -c' # resume mode by default wget='wget -c' # resume mode by default
myip='curl ip.appspot.com' myip='curl ip.appspot.com'
# Human readable by default # Human readable by default
df='df -H' df='df -H'
du='du -ch' du='du -ch'
sdu='du -sk ./* | sort -n' sdu='du -sk ./* | sort -n'
hdu='du -hs ./* | sort -H' hdu='du -hs ./* | sort -H'