> Instead of "ctrl+z", press ":wq" (colon for command mode, w for write, q for
> quit).
If you are still mystified, "ctrl+z" stops a process running on a
terminal, so it's likely that your vi is still running idle. Type 'fg'
on the same terminal to bring it back. For more details on job
control,
> Hi all,
>
> I'm trying to create a type password; the goal is to have a table like:
>
> CREATE TABLE test (
> username varchar,
> pass passwd);
>
> insert into test values ('me','secret');
>
> and have "secret" being automagicly crypted.
>
> What I want is to mimic the PASSWORD function of