-
Notifications
You must be signed in to change notification settings - Fork 0
/
ag_saved
executable file
·44 lines (40 loc) · 1.07 KB
/
ag_saved
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env bash
#!/bin/bash
#
# @author Zeus Intuivo <[email protected]>
#
#
load_struct_testing_wget(){
local provider="$HOME/_/clis/execute_command_intuivo_cli/struct_testing"
[ -e "${provider}" ] && source "${provider}"
[ ! -e "${provider}" ] && eval """$(wget --quiet --no-check-certificate https://raw.githubusercontent.com/zeusintuivo/execute_command_intuivo_cli/master/struct_testing -O - 2>/dev/null )""" # suppress only wget download messages, but keep wget output for variable
( ( ! command -v passed >/dev/null 2>&1; ) && echo -e "\n \n ERROR! Loading struct_testing \n \n " && exit 69; )
} # end load_struct_testing_wget
load_struct_testing_wget
_centos__64(){
ag_fedora_64 """${*}"""
}
_fedora__64(){
ag_fedora_64 """${*}"""
}
# _fedora__32(){ }
_ubuntu__64(){
ag_ubuntu_64 "$@"
}
_ubuntu__32(){
ag_ubuntu_32 "$@"
}
_mingw__64(){
ag_win_64 "$*"
}
# _mingw__32(){ }
_darwin__64(){
ag_mac_64 "$@"
}
_darwin__32(){
ag_mac_32 "$@"
}
_darwin__amr64(){
ag_mac_arm64 "$@"
}
determine_os_and_fire_action """${*}"""