Open task-k opened 3 years ago
Changed how to call variables in shell script to literal . it's for cp command wildcard enable.
In the code so far cp -R 'your_dir/*' target-dir A single quote was inserted like this, it became a string, and it wasn't working.
cp -R 'your_dir/*' target-dir
Feel like I might have added those quotes for something like that problem. I'll need to setup some tests on this to make sure it's working for all use-cases.
Summary
Changed how to call variables in shell script to literal . it's for cp command wildcard enable.
Detail
In the code so far
cp -R 'your_dir/*' target-dir
A single quote was inserted like this, it became a string, and it wasn't working.Depending on this change.