Skip to content

Commit

Permalink
Add dd, gzip, and gunzip commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Scavo committed Nov 25, 2016
1 parent 1707044 commit f7f1825
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/command_paths.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ _CMP=/usr/bin/cmp
_CP=/bin/cp
_CURL=/usr/bin/curl
_DATE=/bin/date
_DD=/bin/dd
_DIFF=/usr/bin/diff
_DIRNAME=/usr/bin/dirname
_ECHO=/bin/echo # also a bash builtin
Expand Down Expand Up @@ -70,6 +71,8 @@ if [[ ${OSTYPE} = darwin* ]] ; then
_BASENAME=/usr/bin/basename
_CUT=/usr/bin/cut
_GREP=/usr/bin/grep
_GZIP=/usr/bin/gzip
_GUNZIP=/usr/bin/gunzip
_MKTEMP=/usr/bin/mktemp
_MORE=/usr/bin/more
_SED=/usr/bin/sed
Expand All @@ -83,6 +86,8 @@ elif [[ ${OSTYPE} = linux* ]] ; then
_BASENAME=/bin/basename
_CUT=/bin/cut
_GREP=/bin/grep
_GZIP=/bin/gzip
_GUNZIP=/bin/gunzip
_MKTEMP=/bin/mktemp
_MORE=/bin/more
_SED=/bin/sed
Expand Down

0 comments on commit f7f1825

Please sign in to comment.