Pass multiple arguments to commands correctly
developWhen calling a command with multiple arguments, each argument must be passed as a separate string. Do not combine multiple arguments into a single string, as this will fail to execute the command correctly.
from sh import tar
# Correct: each argument is a separate string
tar("cvf", "/tmp/test.tar", "/my/home/directory/")
# Incorrect: this will not work
tar("cvf /tmp/test.tar /my/home/directory")