MyConfigs/.bash_aliases
2019-05-27 20:23:50 +02:00

19 lines
360 B
Bash

# Path aliases definition.
# Those are computer dependent so take care to adapt them
export RUST_SRC_PATH=/home/pi/.rustup/toolchains/stable-armv7-unknown-linux-gnueabihf/lib/rustlib/src/rust/src
# ===
# Other not comptuter dependent
export EDITOR=vim;
alias ll='ls -alhF'
# Go inside the directory you just created
function mkcd {
mkdir -p $1
cd $1
}