diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2020-09-26 00:11:46 -0400 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2020-09-26 00:11:46 -0400 |
| commit | 06e9e3912424e6d259d9cceea9ab6ffad3b9de5d (patch) | |
| tree | 374246c62f5a67750d831aba4fcbfbf40833dc83 | |
| parent | 1f48c86a6189eae6203acc6c0bb0ce885e056425 (diff) | |
| download | dotfiles-06e9e3912424e6d259d9cceea9ab6ffad3b9de5d.tar.gz dotfiles-06e9e3912424e6d259d9cceea9ab6ffad3b9de5d.tar.xz | |
Point me in the right direction when seq is missing, also update openbsd package list
| -rw-r--r-- | mkshrc | 1 | ||||
| -rw-r--r-- | openbsd-pkgs.sh | 1 | ||||
| -rw-r--r-- | shell/aliases | 1 |
3 files changed, 3 insertions, 0 deletions
@@ -73,6 +73,7 @@ setaliases() { } ' | column -t } + ! [ -x "$(which seq 2>/dev/null)" ] && alias seq="echo use jot(1)" fi if [ "$(uname)" = "Linux" ] ; then diff --git a/openbsd-pkgs.sh b/openbsd-pkgs.sh index c692f43..5d943a5 100644 --- a/openbsd-pkgs.sh +++ b/openbsd-pkgs.sh @@ -31,4 +31,5 @@ pkg_add -r \ pwgen \ xdotool \ runit \ + tree \ diff --git a/shell/aliases b/shell/aliases index c19e8c3..1aff4d7 100644 --- a/shell/aliases +++ b/shell/aliases @@ -60,6 +60,7 @@ setaliases() { } ' | column -t } + ! [ -x "$(which seq 2>/dev/null)" ] && alias seq="echo use jot(1)" fi if [ "$(uname)" = "Linux" ] ; then |
