Lessons Learned from File Operations
PowerShell vs Unix Commands
When working with file operations in PowerShell, there are several important differences from Unix commands that need to be considered:
Command Chaining
- Bad: Using Unix-style command chaining with
&&
mv file1.md file2.md && mv file3.md file4.md
- Good: Run commands separately or use PowerShell's semicolon
Move-Item file1.md file2.md; Move-Item file3.md file4.md
Directory Creation
- Bad: Using Unix-style
mkdir -p
mkdir -p "src/site/notes/Linux/etc files"
- Good: Using PowerShell's
New-Item
commandNew-Item -ItemType Directory -Path "src/site/notes/Linux/etc files" -Force
File Movement
- Bad: Using Unix-style
mv
commandmv "file with spaces.md" "new location/"
- Good: Using PowerShell's
Move-Item
command with proper quotingMove-Item "file with spaces.md" "new location/"
Git Operations
When moving files around in a git repository, there are several important considerations:
Checking Status
Always check git status
before committing to see:
- Deleted files (shown in red)
- Untracked files (shown in green)
- Modified files (shown in yellow)
Staging Changes
When moving files, you need to stage both:
- The new files in their new location
- The deleted files in their old location
Commit Messages
Write descriptive commit messages that include:
- What was changed
- Where files were moved (if applicable)
- Why the change was made
Example of a good commit message:
Move files from raw_notes to notes directory: moved OSI Model.md and scp.md to root, Linux and Android files to their respective directories
Best Practices
- Always check for existing files in the destination before moving
- Create directory structure before moving files into it
- Use proper quoting around paths with spaces
- Use PowerShell-specific commands instead of Unix-style commands
- Review git status carefully before committing
- Write descriptive commit messages
- Stage both new and deleted files when moving files
Common Pitfalls
- Forgetting to check for existing files in destination
- Not handling spaces in file/directory names properly
- Using Unix commands in PowerShell
- Not staging both new and deleted files
- Writing vague commit messages
- Not creating directory structure before moving files
- Not checking git status before committing