aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.bashrc_netwrix
diff options
context:
space:
mode:
Diffstat (limited to '.bashrc_netwrix')
-rw-r--r--.bashrc_netwrix18
1 files changed, 18 insertions, 0 deletions
diff --git a/.bashrc_netwrix b/.bashrc_netwrix
new file mode 100644
index 0000000..0a8a2a4
--- /dev/null
+++ b/.bashrc_netwrix
@@ -0,0 +1,18 @@
+nwx_host=172.28.10.2
+nwx_dev2=172.28.19.60
+nwx_dev3=172.28.19.61
+
+lint_webapi() (
+ set -o errexit
+
+ local root_dir='/cygdrive/c/Netwrix Auditor/CurrentVersion-AuditCore-Dev/AuditCore/Sources'
+
+ cd "$root_dir/Configuration"
+ doslint WebAPI*.acinc WebAPI*.acconf
+
+ cd "$root_dir/Subsystems/PublicAPI"
+ local path
+ find . -type f -\( -iname '*.cpp' -o -iname '*.h' -\) | while read -r path ; do
+ doslint "$path"
+ done
+)