sed
Verified for current stable LTS
Sed Command: Insert Line At Beginning File
Use for insert line at beginning file with Sed. Exact CLI syntax to insert line at beginning file using Sed.
When to use this: Use for insert line at beginning file with Sed.
Command Syntax
sed -i '1i\your new line text\' <path/to/file> sed -i '1i/your new line text/' <path/to/file> Live Command Builder
Final Command
sed -i '1i\your new line text\' <path/to/file> Command Breakdown
-i- Command Option
- Tool-specific option used by this command invocation.
FAQ
Purpose: Exact syntax to insert line at beginning file using Sed.
Test path: Replace placeholders and run destructive commands in a disposable workspace first.
Flag behavior: Tool version, platform, and shell can change behavior.
Improve This Command
Suggest a correction, safer default, or version-specific note for this entry.
Related Operations
Sed Command: Custom Delimiter In Sed
<command> | sed '<s#////#____#g>' Sed Command: Delay File Opening Sed Function W <command> | sed -fa <path/to/script.sed> Sed Command: Delay File Opening With Sed Script <command> | sed -fa <path/to/script.sed> Sed Command: Delay Opening Files With W Function <command> | sed -fa <path/to/script.sed> Sed Command: Delete Blank Lines From File sed -i '/^[[:space:]]*$/d' <path/to/file>