浏览代码

tput: add page

Hayden Schiff 9 年之前
父节点
当前提交
31a65a9348
共有 1 个文件被更改,包括 23 次插入0 次删除
  1. 23 0
      pages/common/tput.md

+ 23 - 0
pages/common/tput.md

@@ -0,0 +1,23 @@
+# tput
+
+> View and modify terminal settings and capabilities.
+
+- Move the cursor to a screen location:
+
+`tput cup {{y_coordinate}} {{x_coordinate}}`
+
+- Set foreground (af) or background (ab) color:
+
+`tput {{setaf|setab}} {{ansi_color_code}}`
+
+- Show number of columns, lines, or colors:
+
+`tput {{cols|lines|colors}}`
+
+- Ring the terminal bell:
+
+`tput bel`
+
+- Reset all terminal attributes:
+
+`tput sgr0`