File size: 1,739 Bytes
7d87704
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
Name: gumroad-linux-fileops-commands

Version: 1.0.0

Language: English

license: cc-by-sa-4.0
---
Dataset Summary
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.

Supported Tasks
Command-line instruction parsing

Natural language to bash translation

System administration workflow analysis

Security context classification

Multi-cloud environment modeling

Dataset Structure
Data Fields
Each record contains:

instruction (string): Natural language task description

output (object): Structured JSON command with:

tool: Bash utility name (find, tar, cp, mv, etc.)

action: Always "json"

args: Command arguments and execution parameters

metadata: Environmental context including persona, OS, cloud provider, security level

Sample Record
json
{
  "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",
  "output": {
    "tool": "bash",
    "action": "json",
    "args": {
      "command": "find /backup/agriculture-ml-cloud-5366 -type f -mmin -1440 -exec stat -c '%n %y' {} \\;",
      "timeout": 30,
      "validate": true
    },
    "metadata": {
      "persona": "backup_admin",
      "os": "CentOS 7",
      "cloud": "Alibaba Cloud",
      "environment": "development",
      "security_level": "NONE",
      "project": "agriculture-ml-cloud-5366"
    }
  }
}