Suppose I have the file tree
-A_dir/
- a_test_file1
Doing mv a_test_file1 a_test_file2
results in an annoying correction query. The second argument of mv
should never be corrected, as it may or may not point to an existing node on the filesystem. However, the first argument may be corrected because it must always be a valid node.
This is an common use case, where I'd only like zsh
to correct certain arguments in a command. How can I achieve this?