linux小技巧
1.命令下发送邮件
cat "mail content" | mail yourname@domain.com -s "mail title"
cat /dir/file_conent | mail yourname@domain.com -s "mail title"
带附件,用mutt
cat "mail content" | mutt yourname@domain.com -s "mail title" -a attach_file
cat /dir/file_conent | mutt yourname@domain.com -s "mail title" -a attach_file
2.启动多个X桌面
用别名
alias X1=''startx -- :1 -bpp 32 -quiet&''
alias X2=''startx -- :2 -bpp 32 -quiet&''
或者直接用命令
startx -- :1 -bpp 32 -quiet&
startx -- :2 -bpp 32 -quiet&
然后可用CTRL ALT F8,CTRL ALT F9切换,依此类推到CTRL ALT F12
最简单的方法
startx -- :1
3.调整显示器
xvidtune
4.给文件输出加上行号
nl /etc/passwd
nl /etc/passwd -s ''.''
在vi中
:%!nl
5.用命令截屏
import -window root hello.jpg
6.非交互方式文本转html
vim -c ":TOhtml" -c ":wq %" -c ":q" filename
7.清空文件
:>filename
> filename
echo > filename
8.更改整个目录的用户组
find . -print -exec chown group.user ''{}'' ;
chown . group.usr -R
9.刻录ISO
mkisofs -o X_lfs.iso -J -R `pwd`/X_lfs
10.监视某个命令的执行结果
watch -n1 command
watch -n1 date
11.查看硬件信息
vi /etc/sysconfig/hwconf
rpm2cpio rpmname.rpm | cpio --extract --make-directories
12.其它
监视文件的变化
tail -f /var/log/messages
命令行下HTML相关命令
htmlview #命令行看网页
阅读(1126) | 评论(0) | 转发(0) |