How to print ' (single quote)

HEllo

For a long time I'm unable to print this simple character: ' (You call it single quote?)

I can print those tilted quotes: ` and ´

but not '

I need to print ' because I want to run a command like

# perl -MCPAN -e 'install DBD::mysql'

My keyboard is a Turkish QWERTY and here's the location of ' which I cannot print:

1212Keyboard.jpg
 
Maybe you can work around it:

Code:
TEST="install DBD::mysql"
perl -MCPAN -e $TEST

But it might be better to change your keyboard country and ignore the difference with your keyboard.
 
Back
Top