-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathatom-shell-commands.cson
86 lines (86 loc) · 2.14 KB
/
atom-shell-commands.cson
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
"atom-shell-commands":
commands: [
{
name: "SAS Grid 9.3"
command: "I:/RHO_APPS/SAS grid/QuickBatch/PROD/SASBatch93.bat"
arguments: [
"{FileName}"
]
options:
cwd: "{FileDir}"
keymap: "ctrl-shift-3"
}
{
name: "SAS Grid 9.4"
command: "I:/RHO_APPS/SAS grid/GridBatch/PROD/GridBatch94.bat"
arguments: [
"{FilePath}"
]
options:
cwd: "{FileDir}"
keymap: "ctrl-shift-4"
}
{
name: "SAS Grid 9.4 - Wait"
command: "I:/RHO_APPS/SAS grid/GridBatch/PROD/GridBatch94.bat"
arguments: [
"{FilePath}"
"wait"
]
options:
cwd: "{FileDir}"
keymap: "ctrl-shift-5"
},
{
name: "SAS Cluster 9.1",
command: "C:/windows/system32/cscript.exe"
arguments: [
"/nologo",
"C:\\Program\ Files\ (x86)\\RhoClusterShell\\SubmitJob.vbs",
"sas91",
"{FilePath}"
]
options:
cwd: "{FileDir}"
keymap: "ctrl-shift-c 1"
},
{
name: "SAS Cluster 9.2",
command: "C:/windows/system32/cscript.exe"
arguments: [
"/nologo",
"C:\\Program\ Files\ (x86)\\RhoClusterShell\\SubmitJob.vbs",
"sas92",
"{FilePath}"
]
options:
cwd: "{FileDir}"
keymap: "ctrl-shift-c 2"
}
{
name: "SAS Cluster 9.3",
command: "C:/windows/system32/cscript.exe"
arguments: [
"/nologo",
"C:\\Program\ Files\ (x86)\\RhoClusterShell\\SubmitJob.vbs",
"sas93",
"{FilePath}"
]
options:
cwd: "{FileDir}"
keymap: "ctrl-shift-c 3"
},
{
name: "SAS Cluster 8.2",
command: "C:/windows/system32/cscript.exe"
arguments: [
"/nologo",
"C:\\Program\ Files\ (x86)\\RhoClusterShell\\SubmitJob.vbs",
"sas8",
"{FilePath}"
]
options:
cwd: "{FileDir}"
keymap: "ctrl-shift-c 8"
}
]