Trending

#TuxTips

Latest posts tagged with #TuxTips on Bluesky

Latest Top
Trending

Posts tagged #TuxTips

Post image

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

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
Post image

¿Quieres saber qué comandos usas más en tu terminal?
Ejecuta:

history | awk '{CMD[$2]++} END {for (a in CMD) print CMD[a], a}' | sort -rn | head
¡Y verás tu top 10 de comandos más usados!

#Linux #Terminal #Shell #TuxTips

0 0 0 0