ll命令找不到
Tofloor
poster avatar
c798654350
deepin
2015-12-09 23:54
Author
user@user-pc:~$ ll
bash: ll: 未找到命令
user@user-pc:~$

ll命令无法使用 。。。ls是好的

Reply Favorite View the author
All Replies
knightlu
deepin
2015-12-09 23:59
#1
ll是ls的别名,你自己在.bashrc里定义一下就好了
alias ll=’ls -l --color'
Reply View the author
mamy920
deepin
2015-12-10 00:09
#2
ll = ' ls -ahl'
Reply View the author
cxbii
deepin
2015-12-10 17:38
#3
这个是Ubuntu才内置的别名
Reply View the author
android
deepin
2015-12-10 17:48
#4
ls -l是一样的功能吧
Reply View the author
sunlinyao
deepin
2015-12-10 18:04
#5
  1. echo "alias ll='ls -alF'" >> ~/.bashrc
Copy the Code

这句话意思是将这个别名添加到登录脚本中,每次登录都会执行这条命令,这样你就可以直接使用ll,ubuntu就是这样做的
注意:是>>不是> 别弄错了
Reply View the author