CtrlK
BlogDocsLog inGet started
Tessl Logo

floxenvs

github.com/flox/floxenvs

Skill

Added

Review

mkdir

Create directories. Use when making new directories, creating nested directory structures, or setting directory permissions at creation time.

ls

List directory contents. Use when you need to view files in a directory, check permissions, sizes, timestamps, or sort/filter file listings.

mv

Move or rename files and directories. Use when relocating files, renaming, or moving across filesystems.

dirname

Strip last component from file name. Use when extracting the directory path from a full file path.

cut

Remove sections from each line of files. Use when extracting columns, fields from CSV/TSV data, or specific character positions.

cat

Concatenate and display file contents. Use when viewing files, combining files, or creating files from stdin.

env

Run a command with a modified environment, or print the current environment. Use when setting environment variables for a single command, clearing the environment, or inspecting variables.

basename

Strip directory and suffix from filenames. Use when extracting just the filename from a path, or removing file extensions.

chmod

Change file mode/permissions. Use when setting read/write/execute permissions on files and directories.

cp

Copy files and directories. Use when duplicating files, creating backups, or copying directory trees with preserved attributes.

chown

Change file owner and group. Use when adjusting file ownership, typically requires root/sudo.