浏览代码

Update linux-general.md

Nordstrand 3 年之前
父节点
当前提交
d542ad2c26
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      config/general/linux-general.md

+ 1 - 1
config/general/linux-general.md

@@ -43,7 +43,7 @@ breadcrumbs:
     - Warning: This might execute the program if not using glibc.
 - Show printable character strings in the executable: `strings -a <executable>`
 - Run application and show dynamic library calls: `ltrace <executable> [args]`
-    - ltrace will output the trace to STDERR, so consider adding `>/dev/null` to make the program itself more quiet.
+- Run application and show system calls: `strace <executable> [args]`
 - Strip the symbol table and debug info from an executable: `strip <executable>`
     - Without certain options, it will still keep some useful info in the file.
 - Rebuild the symbol table for a statically linked executable: See `gensymtab`.