$
Linux Practice
Practice
Tutorials
English
한국어
日本語
中文
terminal
Welcome to Linux Practice Terminal!
Type "help" to see available commands.
user
@linux:
~
$
Project: Vim Workflow
Reset Lesson
Practice a real-world workflow: create and edit configuration files using vim.
Step 1
Create a project directory with a config subdirectory.
Type: mkdir -p project/config
mkdir -p project/config
Step 2
Create a new config file with vim. Press i to enter INSERT mode, type some settings (e.g., "port=8080"), then Esc → :wq to save.
Step 3
Verify the configuration file was created.
Step 4
Open the config file again to add more settings. Use o to add a new line below, type additional settings, then save with :wq.
Step 5
Verify the updated configuration.
Step 6
List all files in your project to see the final structure.