-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bashrc.raistlin
34 lines (27 loc) · 929 Bytes
/
.bashrc.raistlin
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#
# .bashrc.raistlin.
#
logPrint "Processing ~/.bashrc.$(hostname -s)"
export PODS=/pods
#export SSH_AGENT_PID="DISABLE"
export REPOS=/root/repos
export SIPP=/home/taisto/repos/rtt-focus/3pp/sipp/sipp
export GCC_THREADS="$(nproc)"
export GDB_RUN="gdb --ex run --args"
export DOCKER=podman
export CRI_SOCKET=/var/run/docker.sock
alias zz="zypper"
alias cdr="cd ~/repos/rtt-focus"
function cleanLogs() {
find . -name "*.log" -o -name "*.std*" -o -name "*.msgAll.log" -o -name "*.msgList.log" -o -name failedTcLogs.txt -o -name output.xml -o -name log.xml | xargs -rt rm
}
alias eclipse="~/eclipse/eclipse"
alias mm="make -j$GCC_THREADS"
alias mmC="make -j$GCC_THREADS ccm "
alias mma="make -j$GCC_THREADS all"
alias mmt="nice make -j$GCC_THREADS ut_run"
alias mmu="make -j$GCC_THREADS ut"
alias mmc="make clean"
alias mmD="make distclean"
alias mmb="make -j$GCC_THREADS bt"
alias mmB="nice make -j$GCC_THREADS bt_run"