Part of my school task, I am supposed to write a shell script that prints a file called \*\\'"Best School"\'\\*$\?\*\*\*\*\*:)
. Due to the mix of strings and some special characters which are consequently interpreted by the shell program, I am unable to successfully print out the exact file name.
I applied the strong quoting method; touch '\*\\'"Best School"\'\\*$\?\*\*\*\*\*:)'
but that also means the single quotes within the string will be interpreted, hence ignored.
I also tried \\\*\\\\'"Best School"\'\\\\\*\$\?\\\*\\\*\\\*\\\*\\\*\\\:\)
still the single quotes within where ignored.