From 3f8b81562b57874b1e922dce90a70bd4e6879efe Mon Sep 17 00:00:00 2001 From: fatalerrors Date: Wed, 1 Apr 2026 15:53:10 +0200 Subject: [PATCH] sorted alias out --- profile.conf | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/profile.conf b/profile.conf index 81f9fe8..de3d827 100755 --- a/profile.conf +++ b/profile.conf @@ -70,26 +70,41 @@ MAKEFLAGS='-j12' PKGSOURCES='/share/src/archives' [aliases] +# Aliases section is used to set user aliases, it is loaded only for +# interactive shells. +# Various ls aliases ll='ls -laFh --color=auto' la='ls -Ah --color=auto' l='ls -CF --color=auto' ls='ls --color=auto' +# Add color to grep output grep='grep --color=auto' egrep='egrep --color=auto' fgrep='fgrep --color=auto' + +# Quick find alias qfind="find . -name " +# Some alias for compiling +mk='make' mkck='make check' mkin='make install' mkdin='make DESTDIR=$PWD/dest-install install' + +# ssh alias with X11 forwarding, without right restriction ssh='ssh -Y' +# Resume mode for wget wget='wget -c' # resume mode by default -myip='curl ip.appspot.com' # Human readable by default df='df -H' du='du -ch' sdu='du -sk ./* | sort -n' hdu='du -hs ./* | sort -H' + +# Readable dmesg timestamps +dmesg='dmesg -T' + +# End of profile.conf