Skip to content

Commit

Permalink
add scripts in path
Browse files Browse the repository at this point in the history
  • Loading branch information
ochurlaud committed Sep 17, 2019
1 parent df35b10 commit f7e7399
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/zsh/zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ zstyle ':completion:*:kill:*' force-list always
zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#)*=0=01;31'

CDPATH=.:~:~/git
PATH=$PATH:~/.local/bin
PATH=$PATH:~/.local/bin:~/.my_scripts_configs/scripts

#I want my umask 0027 if I'm not root
if [[ $(whoami) = root ]]; then
Expand Down
2 changes: 1 addition & 1 deletion scripts/decrypt_dir.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#! /bin/sh

function usage() {
echo "Usage: ./decrypt_dir.sh INPUT OUTPUT"
echo "Usage: decrypt_dir.sh INPUT OUTPUT"
exit $1
}

Expand Down
2 changes: 1 addition & 1 deletion scripts/encrypt_dir.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#! /bin/sh

function usage() {
echo "Usage: ./encrypt_dir.sh INPUT OUTPUT"
echo "Usage: encrypt_dir.sh INPUT OUTPUT"
exit $1
}

Expand Down

0 comments on commit f7e7399

Please sign in to comment.