aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.bashrc_netwrix
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-08-17 22:58:15 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2016-08-17 22:58:15 +0200
commit35d858363a88f1d985ba36cf0e18de6ab0ccfcd1 (patch)
tree611e856f77effc512aaa317137039bcb9f49060e /.bashrc_netwrix
parentmove Windows-specific stuff to .appdata/ (diff)
downloadlinux-home-35d858363a88f1d985ba36cf0e18de6ab0ccfcd1.tar.gz
linux-home-35d858363a88f1d985ba36cf0e18de6ab0ccfcd1.zip
move .bashrc_* to .bash_utils/
Diffstat (limited to '.bashrc_netwrix')
-rw-r--r--.bashrc_netwrix38
1 files changed, 0 insertions, 38 deletions
diff --git a/.bashrc_netwrix b/.bashrc_netwrix
deleted file mode 100644
index c20b32e..0000000
--- a/.bashrc_netwrix
+++ /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 .bashrc_git || return
-source .bashrc_text || 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'
-}