Command
Everything on SkillVeris tagged Command — collected across the glossary, study notes, blog, and cheat sheets.
24 resources across 1 library
Study Notes(24)
Batch Script Arguments
Learn how Windows Batch scripts read command-line arguments using positional parameters, SHIFT, and path modifiers like %~dp0.
The Choice Command
Use the built-in choice command to build single-keypress menus, timed prompts, and errorlevel-driven branching in Windows batch scripts.
Goto and Labels
Understand how batch scripts use labels and the goto command to jump execution, build subroutines with call, and structure menu-driven scripts.
Command Binding in XAML
The XAML-side mechanics of wiring controls to ViewModel commands, covering Command, CommandParameter, CommandTarget, KeyBinding, and InputBinding-based invocat…
Command Parameters
How CommandParameter passes contextual data from a View control into a ViewModel's Execute and CanExecute logic, and the patterns and pitfalls around its use.
Console Apps in .NET
Learn how .NET console applications are structured, how they read input and produce output, and how they're built and published as standalone command-line tool…
Chaining and Retry-ability
Understand how Cypress commands chain together via the command queue and how built-in retry-ability makes assertions resilient to asynchronous UI changes.
Custom Commands
Learn how to extend Cypress with Cypress.Commands.add() to create reusable custom commands like cy.login(), reducing duplication across tests.
sed Substitution Basics
A practical guide to the s command — sed's find-and-replace engine — covering delimiters, flags, backreferences, and the ampersand.
Substitute Command Flags
The flags that follow the sed substitute command control how many matches are replaced, whether matching is case-insensitive, and what happens after the replac…
The Transform Command
The y command performs character-by-character transliteration, mapping each character in one set to the corresponding character in another, similar to the tr u…
Event Binding in Tk
How Tk's bind command connects user input and window events to Tcl scripts, including event sequences, substitutions, and bind tags.
Tcl Syntax and Variables
How Tcl's command-word syntax, substitution rules ($, [], {}), and the `set` command work together to define and use variables.
Ad-Hoc Commands
Ad-hoc commands run a single Ansible module against a set of hosts directly from the command line, ideal for quick one-off tasks that don't warrant a full play…
Command Pattern
The Command pattern turns a request into a standalone object with a uniform execute() method, decoupling the invoker from the receiver and enabling undo, queui…
Command Substitution in Depth
Understand how $(...) captures command output as a string, why it's preferred over backticks, and the quoting rules that prevent word-splitting bugs.
Subshells and Command Grouping
Learn how bash isolates execution with subshells using parentheses versus grouping commands in the current shell with braces, and why the distinction matters f…
Command Injection
Understand how command injection lets attackers execute arbitrary operating system commands through vulnerable application inputs, and why it's often more dang…
MongoDB Quick Reference
A fast lookup guide to the most commonly used MongoDB shell commands, operators, and CRUD syntax for day-to-day development.
Redis Quick Reference
A condensed cheat sheet of the most-used Redis commands across data types, key management, and server administration.
Command Line Arguments in C
Learn how argc and argv let C programs read command-line input, with parsing and string-to-number conversion examples.
Strategy and Command Patterns
Two behavioral patterns: Strategy swaps interchangeable algorithms at runtime; Command encapsulates a request as an executable object.
PHP Security Basics
Core security practices every PHP developer must apply — input validation, output escaping, safe database access, and secure session handling.
Command-Line Arguments and getopts
Learn how Bash scripts receive positional parameters, how to shift and iterate over them, and how to build proper option parsing with getopts.