Hello, I want to call a script:
./my_script file1 file 2
My problem is that in the script $1 is file1 (OK), but $2 is file (WRONG), and i want it to be <file 2>
I tried:
./my_script file1 file\ 2 or ./my_script file1 "file\ 2"
But it doesn't work :|
Thanks in advance
Telmo Cardoso
./my_script file1 file 2
My problem is that in the script $1 is file1 (OK), but $2 is file (WRONG), and i want it to be <file 2>
I tried:
./my_script file1 file\ 2 or ./my_script file1 "file\ 2"
But it doesn't work :|
Thanks in advance
Telmo Cardoso