disable (e14ddd1f16e7e5788392c50de21ea7c927e0690c) | disable (c3755aa30cbddc30cbdc26707aac2606e9cd6ec5) |
---|---|
1#!/bin/sh 2#- 3# Copyright (c) 2012-2013 Devin Teske 4# All Rights Reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions 8# are met: --- 42 unchanged lines hidden (view full) --- 51############################################################ MAIN 52 53# Incorporate rc-file if it exists 54[ -f "$HOME/.bsdconfigrc" ] && f_include "$HOME/.bsdconfigrc" 55 56# 57# Process command-line arguments 58# | 1#!/bin/sh 2#- 3# Copyright (c) 2012-2013 Devin Teske 4# All Rights Reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions 8# are met: --- 42 unchanged lines hidden (view full) --- 51############################################################ MAIN 52 53# Incorporate rc-file if it exists 54[ -f "$HOME/.bsdconfigrc" ] && f_include "$HOME/.bsdconfigrc" 55 56# 57# Process command-line arguments 58# |
59while getopts dD:hSX flag; do | 59while getopts h$GETOPTS_STDARGS flag; do |
60 case "$flag" in 61 h|\?) f_usage $BSDCFG_LIBE/$APP_DIR/USAGE "PROGRAM_NAME" "$pgm";; 62 esac 63done 64shift $(( $OPTIND - 1 )) 65 66# 67# Initialize --- 37 unchanged lines hidden --- | 60 case "$flag" in 61 h|\?) f_usage $BSDCFG_LIBE/$APP_DIR/USAGE "PROGRAM_NAME" "$pgm";; 62 esac 63done 64shift $(( $OPTIND - 1 )) 65 66# 67# Initialize --- 37 unchanged lines hidden --- |