MyConfigs/.bash_aliases

19 lines
360 B
Bash
Raw Permalink Normal View History

2019-05-27 20:23:50 +02:00
# 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
}