Skip to content

Commit da12c7e

Browse files
sjnimsclaude
andauthored
fix(command-development): correct grep pattern in testing-strategies (#62)
## Summary Fix incorrect grep pattern in troubleshooting documentation. ## Problem The grep command for verifying bash command syntax was searching for `!\`` (escaped backtick) instead of `!`` (the actual bash pre-execution syntax). ## Solution Changed `grep '!\`'` to `grep '!`'` to match the correct pattern. ## Testing - [x] Markdownlint passes --- 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude <noreply@anthropic.com>
1 parent e4f730a commit da12c7e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/plugin-dev/skills/command-development/references/testing-strategies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -677,7 +677,7 @@ echo "Test: \$1 and \$2" > .claude/commands/test-args.md
677677
grep "allowed-tools" .claude/commands/my-command.md
678678

679679
# Verify command syntax
680-
grep '!\`' .claude/commands/my-command.md
680+
grep '!`' .claude/commands/my-command.md
681681

682682
# Test command manually
683683
date

0 commit comments

Comments
 (0)