写点什么

ARTS 打卡 week#2

发布于: 2020 年 06 月 22 日



Review:

Paper: paraphrase generation with latent bag of words

https://github.com/FranxYao/dgm_latent_bow



Share:

Useful Linux command:

  • To count the number of lines, use “wc” with “l” as

wc -l yourTextFile
  • To count the number of words, use “wc” with “w” option as

wc -w yourTextFile
  • And to count the total number of characters, use “wc” with “c” as

wc -c yourTextFile
  • Using wc with no options will get you the counts of bytes, lines, and words (-c, -l and -w option).

  • head [-n -k ]... [FILE]...

默认是显示开头前10行。

head -n -k /etc/passwd
  • tail用于输出文件尾部的内容,命令用法:tail [选项] file,默认显示最后10行。

-f:实时刷新文件尾部信息,常用于日志信息监测。



用户头像

还未添加个人签名 2020.05.19 加入

还未添加个人简介

评论

发布
暂无评论
ARTS 打卡week#2