check_eula_acceptance()
{
if [ "$ACCEPT_EULA" == "y" ] && [ "$ACCEPT_EULA" == "Y" ]; then
# to support the old way...
db_set msodbcsql/accept_eula true
fi
db_get msodbcsql/accept_eula || true
if [ "$RET" != "true" ]; then
db_set msodbcsql/accept_eula false
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## Change following to '0' for output to be like ls and '1' for exa features | |
# Don't list implied . and .. by default with -a | |
dot=0 | |
# Show human readable file sizes by default | |
hru=1 | |
# Don't show group column | |
fgp=0 | |
# Don't show hardlinks column |
OlderNewer