diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-08-21 04:17:45 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-08-21 04:17:45 +0300 |
commit | fba5e77e4f75c8ec6c6d9023ab4be6edffa5ddc3 (patch) | |
tree | ed38386e512eeca20c4712fa4066113e63364346 | |
parent | appdata.sh: grammar tweaks (diff) | |
download | linux-home-fba5e77e4f75c8ec6c6d9023ab4be6edffa5ddc3.tar.gz linux-home-fba5e77e4f75c8ec6c6d9023ab4be6edffa5ddc3.zip |
export netwrix.sh to another project
-rw-r--r-- | .bash_utils/netwrix.sh | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/.bash_utils/netwrix.sh b/.bash_utils/netwrix.sh deleted file mode 100644 index 0f79937..0000000 --- a/.bash_utils/netwrix.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/usr/bin/env bash - -# Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> -# This file is part of the "Cygwin configuration files" project. -# For details, see https://github.com/egor-tensin/cygwin-home. -# Distributed under the MIT License. - -source .bash_utils/git.sh || return -source .bash_utils/text.sh || return - -export nwx_host=172.28.10.2 -export nwx_dev2=172.28.19.60 -export nwx_dev3=172.28.19.61 - -lint_webapi() ( - set -o errexit -o nounset -o pipefail - - local root_dir='/cygdrive/c/Netwrix Auditor/CurrentVersion-AuditCore-Dev/AuditCore/Sources' - - local -a paths - local path - - cd "$root_dir/Configuration" - while IFS= read -d '' -r path; do - paths+=("$path") - done < <( find . -type f -\( -iname 'WebAPI*.acinc' -o -iname 'WebAPI*.acconf' -\) -print0 ) - - cd "$root_dir/Subsystems/PublicAPI" - while IFS= read -d '' -r path; do - paths+=("$path") - done < <( find . -type f -\( -iname '*.cpp' -o -iname '*.h' -\) -print0 ) - - doslint "${paths[@]+"${paths[@]}"}" -) - -backup_repo_nwx() { - backup_repo '//spbfs02/P/Personal/Egor Tensin' -} |