12 lines
236 B
Bash
12 lines
236 B
Bash
|
|
#!/bin/zsh
|
||
|
|
#
|
||
|
|
# Alias for comby cli tool
|
||
|
|
#
|
||
|
|
# See: https://comby.dev/
|
||
|
|
#
|
||
|
|
# Author: Ade Attwood <code@adeattwood.co.uk>
|
||
|
|
# Updated: 2021-11-21
|
||
|
|
#
|
||
|
|
|
||
|
|
alias comby="comby -exclude-dir vendor,node_modules,.git,.log,logs,tmp,runtime,tests/_output"
|