Description
We want DevRec to capture shell activities. It can be some keyword, or every single command the user is typing in the shell (similar to terminal history).
For instance, if the user types:
mkdir, record it.
rm -r file, record it.
nvim, record it.
touch my_file.c, record it.
- etc
To avoid flooding the session log, we probably should ignore common commands such as ls, cd, etc
Description
We want DevRec to capture shell activities. It can be some keyword, or every single command the user is typing in the shell (similar to terminal
history).For instance, if the user types:
mkdir, record it.rm -r file, record it.nvim, record it.touch my_file.c, record it.To avoid flooding the session log, we probably should ignore common commands such as
ls,cd, etc