aboutsummaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2020-02-11 17:07:38 -0500
committertdro <tdro@users.noreply.github.com>2020-02-11 17:07:38 -0500
commit2a8f149eaab825b0677a992da21da208681ec942 (patch)
treedfc7f2313c5afc91935ba634552a12128ce1eddd /.bashrc
parenta86de4303032c022dea3ade21a1735f3f40ba739 (diff)
downloaddotfiles-2a8f149eaab825b0677a992da21da208681ec942.tar.gz
dotfiles-2a8f149eaab825b0677a992da21da208681ec942.tar.bz2
dotfiles-2a8f149eaab825b0677a992da21da208681ec942.zip
.bashrc: Linting
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/.bashrc b/.bashrc
index 19c2181..85e8b60 100644
--- a/.bashrc
+++ b/.bashrc
@@ -76,7 +76,7 @@ export HISTCONTROL=ignoredups:erasedups
export PROMPT_COMMAND="cd .; history -a"
# set wget history path
-alias wget="wget --hsts-file $HOME/.cache/wget.history"
+alias wget='wget --hsts-file $HOME/.cache/wget.history'
# ssh agent with keychain
alias ssh='eval $(/usr/bin/keychain --eval --agents ssh -Q --quiet ~/.ssh/mobile ~/.ssh/primary) && ssh'
@@ -158,7 +158,7 @@ export FZF_DEFAULT_OPTS="--color=fg:255,hl:9 \
--color=marker:109,spinner:248,header:255"
# source fzm
-[ -f "$HOME"/.config/fzf-marks/fzf-marks.plugin.bash ] && source "$HOME/.config/fzf-marks/fzf-marks.plugin.bash"
+[ -f "$HOME/.config/fzf-marks/fzf-marks.plugin.bash" ] && . "$HOME/.config/fzf-marks/fzf-marks.plugin.bash"
# change directory with fzf
fd() {
@@ -176,4 +176,4 @@ history-remove-duplicates() {
docker-rootfs() { id=$(docker run -d "$1" /bin/true) && docker export -o "$2" "$id" && docker container rm "$id"; }
# remove dangling docker images
-docker-remove-dangling() { docker container prune --force && docker rmi $(docker images -f 'dangling=true' -q); }
+docker-remove-dangling() { docker container prune --force && docker rmi "$(docker images -f 'dangling=true' -q)"; }