顯示linux系統(tǒng)的當前時間
date
以2012/03/23的方式顯示日期
date +%y/%m/%d
** 列出當前月份的月歷**
cal
顯示整年的月歷
cal 2018
顯示2018年3月的月歷
cal 3 2018
使用計算器計算
bc
使用計算器計算1/3,結果保留2位小數(shù)
scale = 2 1/3
顯示當前目錄下所有文件(包括隱藏文件)
ls -a
以長格式顯示目錄/etc下所有文件
ls -al /etc
使用help命令查看date命令
date --help
使用man命令查看ls命令
man ls
使用ls命令查看當前目錄下以i開頭的所有文件
ls i*
使用showdown命令在10分鐘后關閉計算機:
shutdown -h +10
取消計劃關機
shutdown -c
根目錄下有哪些內容
ls /
進入/tmp目錄 創(chuàng)建并進入
cd /tmp
mkdir 111
cd 111
在當前目錄下,建立權限為741的目錄test1linux常用命令linux常用命令,查看是否創(chuàng)建成功。
mdkir -m 741 test1
在目錄test1下建立目錄test2/teat3/test4
cd test1
mkdir -p test2/test3/test4
進入test2,刪除目錄test3/test4
cd test2
rmdir -p test3/test4
將root用戶家目錄下的.bashrc復制到/tmp下,并更名為bashrc
cp /root/.bashrc /tmp/bashrc
重復步驟 要求在覆蓋錢詢問
cp -i /root/.bashrc /tmp/bashrc
復制目錄/etc/下的內容到/tmp下
cp -r /etc/ /tmp
在當前目錄下建立文件aaa
touch aaa
查看該文件的權限、大小及時間
ls -l
強制刪除該文件
rm -f aaa
將/tmp下的bashrc移到/tmp/111/test1/test2
mv /tmp/bashrc /tmp/111/test1/test2
將test1目錄及其下面包含的所有文件刪除
rm -r /tmp/111/test1
** 使用cat命令加行號顯示文件/etc/issue的內容。**
cat -n /etc/lissue
反向顯示/etc/issue中的內容
tac /etc/issue
用nl列出/etc/issue中的內容
nl /etc/issue
more命令查看文件
more /etc/man.config
使用less命令前后翻看文件/etc/man.config中的內容
less /etc/man.comfig
使用head命令查看文件/etc/man.config前20行
head -n 20 /etc/man.config
將/usr/bin/passwd中的內容使用ASCII方式輸出
od -t c /usr/bin/passwd
進入/tmp目錄,將/root/.bashrc復制成bashrc,復制完全的屬性,檢查其日期
cd /tmp
sudo cp -a /root/.bashrc bashrc
ls bashrc
ls --time=atime bashrc
ls time=ctime bashrc
修改文件bashrc的時間為當前時間
touch bashrc
ls bashrc
ls --time=atime bashrc
ls --time=ctime bashrc