Shell-Script

從 sha512sum 的輸出中抑製文件名

  • October 5, 2017

也許這是一個微不足道的問題,但在man頁面中我沒有找到有用的東西。我正在使用 Ubuntu 和bash.

的正常輸出sha512sum testfile

<hash_code>  testfile

如何抑製文件名輸出?我想獲得只是

<hash_code>

沒有辦法抑制這種情況,但由於 SHA 始終是一個沒有空格的單詞,您可以這樣做:

sha512sum testfile | cut -d " " -f 1 

或者例如

< testfile sha512sum | sed 's/  -//'
sha512sum testfile | awk '{print $1}'

引用自:https://unix.stackexchange.com/questions/265740