linux進階
阿新 • • 發佈:2018-12-24
最近在跟大佬交流中,發現他們的linux跟我們玩的不是一個東西,列舉下他們用到的工具以便後續學習使用。
ranger(檔案管理器)
sudo apt install ranger
常用命令如下:
1.H、L //左、右 2.J、K //下、上 3.gg //跳到頂端 4.G //跳到底端 5.Ctrl+f //向下翻頁 6.Ctrl+b //向下翻頁 7.空格 //選擇檔案 8.yy //複製 9.dd //剪下 10.pp //貼上 11.delete //刪除 12.cw //重新命名 13.? //檢視幫助文件 14.f //查詢檔案
pandoc(檔案格式轉換器)
sudo apt install pandoc
格式
pandoc file2 file1 //將檔案1轉換成檔案2格式 1.-f/t //指定輸入檔案格式(如果檔案字尾名無法推測檔案型別,則輸入檔案格式預設markdown) 2.-t/w //指定輸出檔案格式(如果檔案字尾名無法推測檔案型別,html) 例:pandoc -f html -t markdown hello.html //把hello.html從html轉換成markdown格式 3.-o //輸出到檔案 例:pandoc -o 1.html 2.txt 4.-s //產生輸出檔案附帶頭注和腳註(如html) 例:pandoc -o -s hello.html world.txt