Turbolinux 7.0 中 alias 命令怎样使用?

Turbolinux 7.0 中 alias 命令怎样使用?

我想把 mount /dev/hda1 /mnt/c -o iocharset=cp936定义为别名mount c:
alias mount c =mount /dev/hda1 /mnt/c -o iocharset=cp936
输入后提示:
bash: alias: `mount' not found
bash: alias: `c' not found
bash: alias: `=' not found
bash: alias: `mount' not found
bash: alias: `/dev/hda1' not foundbash: alias: `/mnt/c' not found
bash: alias: `-o' not found
再执行alias命令多了一项别名:
alias iocharset='cp936'
怎样才能定义别名,请高手指导,谢谢!

我是在一本LINUX指令辞典中看到alias定义别名的方法:alias "name=str"
name是要定义的别名,str是原名.      
请大家指点,谢谢。      
请大家指点,谢谢!      
加引号      
[QUOTE]最初由 zhsl 发布
[B]我想把 mount /dev/hda1 /mnt/c -o iocharset=cp936定义为别名mount c:
alias mount c =mount /dev/hda1 /mnt/c -o iocharset=cp936
输入后提示:
bash: alias: `mount' not found
bash: alias: `c' not found
bash: alias: `=' not found
bash: alias: `mount' not found
bash: alias: `/dev/hda1' not foundbash: alias: `/mnt/c' not found
bash: alias: `-o' not found
再执行alias命令多了一项别名:
alias iocharset='cp936'
怎样才能定义别名,请高手指导,谢谢!

我是在一本LINUX指令辞典中看到alias定义别名的方法:alias "name=str"
name是要定义的别名,str是原名. [/B][/QUOTE]


alias string1='all string'      
谢谢!
问题已解决:
alias mountc=“mount /dev/hda1 /mnt/c -o iocharset=cp936”
(mount和c之间无空格)
但重新启动后就没了,请问如何保存它?