Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想定期将 bash 历史推送到我的 github 帐户,比如说我每天都会将历史推送到 github,我该怎么做。任何抬头。有可能吗?bash 历史文件应重命名为当前数据时间。这样我就可以追踪了。尽管有本地 bash 历史,但我也更喜欢在 github 中拥有。
非常感谢
部分回答
bash 历史文件应重命名为当前数据时间。
cp -avi "$HISTFILE" "$HISTFILE".$( date -r "$HISTFILE" --rfc-3339=sec | tr ' ' T )
这会将您当前的 bash 历史文件复制到一个带有时间戳后缀的文件,该时间戳后缀取自您的 bash 历史文件的最后修改日期。