Historial de comandos con fecha y hora exacta
Agrega esto en tu archivo ~/.bashrc:
export HISTTIMEFORMAT="%F %T "
Luego, recarga la configuración:
source ~/.bashrc
Ahora, al ejecutar:
history
Verás
1234 2025-05-26 14:30:21 ls -la
1235 2025-05-26 14:31:02 git status
#TuxTips #Sysadmin
Hashtag
#TuxTips
Advertisement · 728 × 90
0
0
0
0
🐧💡 Linux Tip of the Day
Run a script in the background and let it survive after closing your terminal:
nohup bash script.sh > output.log 2>&1 & disown
✨ Useful when running long processes over SSH!
#Linux #TuxTips #TerminalMagic #DevLife #ShellScript
0
0
0
0