1. 程式人生 > >linux基礎篇

linux基礎篇

png images 進制 修改時間 term size mom water 可執行文件

1: bc命令進制換算如圖
技術分享圖片

2: ldd commomd路徑 顯示二進制程序所依賴的庫。
技術分享圖片

3: date 命令

date -s "2008-08-08 20:00:00" 修改時間
date -d "-7 day" 7天已前
date +%F%T 完整的時間
date +%H:%M:%S 時分秒
date +%y:%m:%d 年月日

4.hexdump 把16進制的可執行文件顯示為二進制。
hexdump /bin/ls

5.screen -S 創建會話 實用
screen -ls 顯示可加入的會話
screen -x 加入會話

linux基礎篇