$npx skillfedfor your agent

file-operations

file-operations covers essential Linux file system tasks: searching by name, type, size, or modification time; performing batch operations like rename and delete; and managing permissions and ownership. It includes practical scenarios for cleanup, finding recent changes, and bulk content replacement.

file-operations helps you search, locate, and manage Linux files using find, locate, and standard file commands.

AI-generated summary based on this skill's SKILL.md

50 12 Apache-2.0updated by chaterm

Decision gist · record as of 2026-03-03

file-operations helps you search, locate, and manage Linux files using find, locate, and standard file commands. file-operations covers essential Linux file system tasks: searching by name, type, size, or modification time; performing batch operations like rename and delete; and managing permissions and ownership. It includes practical scenarios for cleanup, finding recent changes, and bulk content replacement.

manual: git clone https://github.com/chaterm/terminal-skills → cp -r terminal-skills/linux/file-operations ~/.claude/skills/file-operations
linux/file-operations/SKILL.md · version 4f75175f

Use it when

  • file-operations handles batch operations on multiple files including copy, delete, and rename tasks.
  • file-operations covers permission management using chmod to modify file access rights and chown to change file ownership.

Verify before relying

Read SKILL.md below before installing (1 file). Open directory: indexed for reading, not audited.

Same gist for agents: .md · .json

Install

chaterm/terminal-skills/file-operations

Open directory. Skills are indexed for reading, not audited. Review a skill's body before installing it.

Frequently asked questions

AI-generated answers based on this skill's SKILL.md and metadata

How do I search for files in file-operations?

file-operations enables you to search and locate files by name, type, size, or modification time using Linux command patterns. You can filter results by file attributes, find large files, locate recently modified content, and apply complex search criteria to narrow results across directory trees.

What batch operations does file-operations support?

file-operations handles batch operations on multiple files including copy, delete, and rename tasks. You can apply these operations to files matching specific patterns, perform recursive directory operations, and execute bulk content replacement or cleanup tasks across many files simultaneously.

How can file-operations help me change file permissions?

file-operations covers permission management using chmod to modify file access rights and chown to change file ownership. You can apply these changes recursively across directories, manage permissions for multiple files in batch operations, and organize access control efficiently.

Can file-operations copy directories with their permissions intact?

Yes, file-operations includes techniques for recursive directory copying that preserves permissions and metadata. You can copy entire directory structures while maintaining ownership and access rights, making it ideal for backup and migration scenarios.

How do I find files by size and date using file-operations?

file-operations lets you search files by size and modification time, helping you locate large files or recently modified content. You can combine size and date criteria to find temporary files for cleanup, identify recent changes, or audit file system activity.

What file comparison features does file-operations include?

file-operations supports viewing and comparing file contents and metadata. You can examine file attributes, compare two files to identify differences, and review metadata to understand file properties and relationships within your system.

SKILL.md

Rendered from the published skill. Quoted content, verbatim.

File and Directory Operations

Overview

Linux file system operation skills, including file search, batch operations, permission management, etc.

File Search

find Command
# Search by name
find /path -name "*.log"
find /path -iname "*.LOG"           # Case insensitive

# Search by type
find /path -type f                  # Files
find /path -type d                  # Directories
find /path -type l                  # Symbolic links

# Search by time
find /path -mtime -7                # Modified within 7 days
find /path -mtime +30               # Modified more than 30 days ago
find /path -mmin -60                # Modified within 60 minutes

# Search by size
find /path -size +100M              # Larger than 100MB
find /path -size -1k                # Smaller than 1KB

# Combined conditions
find /path -name "*.log" -mtime +7 -size +10M
locate Command

```bash

Quick search (requires database update)

locate filename updatedb # Update database

Case

(truncated - see the full file via the links below)

File tree — 1 file
linux/file-operations/SKILL.md

Let your AI agent find skills like this

Example. Real query, live index.

You found this page by searching. An agent finds it by wishing: SkillFed indexes 56,283 agent skills by what they can do, searchable in plain language.

wish › “Search and locate files by name, type, size, or modification time”

Give your agent the search over MCP, or paste the wish link into any chat. No install? Search from any chat →

Related skills

file-operations
by mhattingpete · mhattingpete/claude-skills-marketplace

File Operations retrieves detailed file metadata and statistics—including size, line counts, modification times, and content analysis—using read-only operations. Ideal for understanding file structure and gathering code metrics across projects.

Apache-2.0updated Jul 2026
★ 657repo stars
Linux Cron Service Abuse
by blacklanternsecurity · blacklanternsecurity/red-run

This skill teaches penetration testers to identify and exploit scheduled tasks, system services, and inter-process communication mechanisms for privilege escalation. It covers writable cron scripts, PATH manipulation, wildcard injection attacks, systemd unit modification, and D-Bus service exploitation—all under explicit authorization.

GPL-3.0updated Apr 2026
★ 241repo stars
redis
by chaterm · chaterm/terminal-skills

Master Redis operations across strings, hashes, lists, sets, and sorted sets with real-world examples. Learn persistence strategies, replication setup, and cluster configuration alongside performance monitoring and troubleshooting techniques.

Apache-2.0docs in Chineseupdated Mar 2026
★ 50repo stars
vpn
by chaterm · chaterm/terminal-skills

This skill covers setup and administration for three major VPN protocols: WireGuard, OpenVPN, and IPSec via strongSwan. Learn installation steps, certificate and key generation, server and client configuration, and practical scenarios like site-to-site tunnels and split routing.

Apache-2.0docs in Chineseupdated Mar 2026
★ 50repo stars
Linux File Path Abuse
by blacklanternsecurity · blacklanternsecurity/red-run

This skill guides penetration testers through Linux privilege escalation via writable critical files, NFS exports, shared library hijacking, and group-based access. It covers assessment of available vectors, exploitation techniques for each path, and integration with engagement logging and state management.

GPL-3.0updated Apr 2026
★ 241repo stars
recon-dir-scan
by crazyMarky · crazyMarky/pentest-skills

recon-dir-scan automates directory and file discovery across web applications through multiple fuzzing tools. It supports recursive scanning, status code filtering, virtual host enumeration, API endpoint discovery, and hidden file detection—all with built-in authorization safeguards to ensure proper testing scope.

Apache-2.0updated Jun 2026
★ 259repo stars
Tags
filesystem-navigationbulk-operationsaccess-controlfile-discoverysystem-administrationcommand-line-toolsstorage-managementfile-manipulation