diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2018-02-23 16:28:06 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2018-02-23 16:28:06 +0100 |
| commit | 471e0aa7b05d227226c4a434155ae6efcac1a1b9 (patch) | |
| tree | f44fdefcdd264b6e3cc7990d4bcf4470ff5242fa | |
| parent | b317a11d1afc1a0c8968adbd6ff4d01541ee22ee (diff) | |
| download | dotfiles-471e0aa7b05d227226c4a434155ae6efcac1a1b9.tar.gz dotfiles-471e0aa7b05d227226c4a434155ae6efcac1a1b9.zip | |
bash: added another PATH and an alias
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
| -rw-r--r-- | bashrc | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -102,9 +102,13 @@ if [ -d $HOME/bin ]; then export PATH=$HOME/bin:$PATH fi +# Some packages install inside of ~/.local/bin +export PATH=$HOME/.local/bin:$PATH + # Some other misc. alias. alias iosc="osc -A https://api.suse.de" alias ag='ag --nocolor --path-to-ignore ~/.agignore' +alias random_string="cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 64 | head -n 1" # Cargo environment. source_maybe $HOME/.cargo/env |
