将 zsh_history 迁移到 .bash_history

将 zsh_history 迁移到 .bash_history

我从 mac 迁移到 linux

我备份了我的zsh_history.txt

我如何将其合并/附加到我的.bash_history文件中?

我看到格式不同:

git pull
#1530441990
git push
#1530447814
locate "*ls*" | grep -P 'history'
#1530447865
echo  $HISTFILE
#1530448256



: 1470922871:0;git clone
: 1470923028:0;git clone sso://waze-bimqa-internal/RoutingRegression
: 1470924442:0;ls -ltrh `echo $JAVA_HOME`
: 1470924459:0;java -v
: 1470924464:0;which java

答案1

如果您不关心时间戳,可以使用该history -s命令将行添加到bash历史记录中。

bash-4.2$ history -s foo
bash-4.2$ history -s this is a command
bash-4.2$ history 3
   31  foo
   32  this is a command
   33  history 3

您可以操作文本文件来生成history -s命令,然后source生成命令。

相关内容