如何让bash的历史记录与之前的Bash历史记录相同?
bash 的最新历史很少被要求如此,但失败了
$ bash -lc 'find . -iname \*.c; bash -l'
#or
$ bash -lc 'history -s find . -iname \*.c; history -w; bash -l'
不会有历史
find . -iname \*.c
遇到这样的情况怎么解决呢?
如何让bash的历史记录与之前的Bash历史记录相同?
bash 的最新历史很少被要求如此,但失败了
$ bash -lc 'find . -iname \*.c; bash -l'
#or
$ bash -lc 'history -s find . -iname \*.c; history -w; bash -l'
不会有历史
find . -iname \*.c
遇到这样的情况怎么解决呢?