CJJones commited on
Commit
7d87704
·
verified ·
1 Parent(s): 92b20c7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +61 -3
README.md CHANGED
@@ -1,3 +1,61 @@
1
- ---
2
- license: cc-by-sa-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ Name: gumroad-linux-fileops-commands
3
+
4
+ Version: 1.0.0
5
+
6
+ Language: English
7
+
8
+ license: cc-by-sa-4.0
9
+ ---
10
+ Dataset Summary
11
+ A comprehensive dataset of Linux file operation commands extracted from Gumroad technical documentation and system administration contexts. Each record represents a natural language instruction paired with its corresponding bash command execution in JSON format, complete with rich metadata about the operating environment, security context, and operational parameters.
12
+
13
+ Supported Tasks
14
+ Command-line instruction parsing
15
+
16
+ Natural language to bash translation
17
+
18
+ System administration workflow analysis
19
+
20
+ Security context classification
21
+
22
+ Multi-cloud environment modeling
23
+
24
+ Dataset Structure
25
+ Data Fields
26
+ Each record contains:
27
+
28
+ instruction (string): Natural language task description
29
+
30
+ output (object): Structured JSON command with:
31
+
32
+ tool: Bash utility name (find, tar, cp, mv, etc.)
33
+
34
+ action: Always "json"
35
+
36
+ args: Command arguments and execution parameters
37
+
38
+ metadata: Environmental context including persona, OS, cloud provider, security level
39
+
40
+ Sample Record
41
+ json
42
+ {
43
+ "instruction": "find all files modified in the last 24h in directory '/backup/agriculture-ml-cloud-5366'. Include file modification timestamps in the output. Environment: development, Security: NONE",
44
+ "output": {
45
+ "tool": "bash",
46
+ "action": "json",
47
+ "args": {
48
+ "command": "find /backup/agriculture-ml-cloud-5366 -type f -mmin -1440 -exec stat -c '%n %y' {} \\;",
49
+ "timeout": 30,
50
+ "validate": true
51
+ },
52
+ "metadata": {
53
+ "persona": "backup_admin",
54
+ "os": "CentOS 7",
55
+ "cloud": "Alibaba Cloud",
56
+ "environment": "development",
57
+ "security_level": "NONE",
58
+ "project": "agriculture-ml-cloud-5366"
59
+ }
60
+ }
61
+ }