Linux指令

# 1.移动文件(有重名则覆盖)
mv aFinder/aFile.xx otherFinder/thisFile.xx

# 2.拷贝文件(有重名则覆盖)
cp aFinder/aFile.xx otherFinder/thisFile.xx

# 3.显示日期
date
date +%Y/%m/%d
date +%H:%M

# 4.显示日期
cal [[m] y]

# 5.计算器 (+ - * / ^ %)
bc
#设置结果保留小数位数
scale=3
#退出计算器
quit

 

你可能感兴趣的:(linux)