#shelltips search results
#IfYouDidntKnow Running "cat /etc/passwd" gives an output that is a bit hard to read. Thanks to the column command, we can make it easier on the eyes. cat /etc/passwd | column -t -s : -t is used for creating a table -s defines the column delimiter, in this case ":" #ShellTips
Typing less isn’t lazy, it’s efficient. If you run the same commands daily, let your shell do the work. Use alias to set shortcuts like : • alias gs="git status" • alias ll="ls -la" • alias ..="cd .." Now gs runs git status. Small tweaks, big speed-ups. #ShellTips #Linux
Find average #RTT for a host #ping $ ping -c 10 host | tail -1 | awk -F "=" '{split($2,a,"/"); printf "%s ms\n", a[2]}' #shelltips #linux E.g:
Master Linux One Command at a Time Manage Jobs: jobs – View background and suspended tasks in your current shell session. Easily track what’s running, stopped, or waiting. #LinuxCommands #jobs #ShellTips #SysAdmin #CommandLine #OpenSource #TechGuide #MasterLinux
💡 In Bash, pipes (|) send only stdout, not errors. ⚠️ stderr goes straight to the terminal. 👉 To include errors: cmd1 2>&1 | cmd2 🔧 Use set -o pipefail for safer scripts. #Bash #Linux #ShellTips #ALX_BE #ALX_SE #ALX_PDBE
Some tools forget to check is STDOUT isatty() before writing... Get rid of ansi #terminal colors with this command: sed -r "s/\x1B\[[0-9;]*?[m|K]//g" #shelltips #bash github.com/nil0x42/scripts
Tired of typing cd back and forth? 🤯 Use pushd and popd! 🔹 pushd /etc → Switches to /etc & saves your previous dir 🔹 popd → Returns you to the last saved dir 🔹 dirs -v → Shows your directory stack Effortless navigation! 🚀 #Linux #ShellTips
Close equivalent to 'netstat -tunap' on macOS: alias netstat='lsof -nP -i4 +c 15' #shelltips
#shelltips 查看 tcp 链接状态统计 ```shell netstat -atn|awk '/^tcp/{++count[$NF]} END {for(a in count) print a,count[a]}' ```
ShellBench: Perform Benchmark Tests on Various Linux Shells #Linux #ShellTips #Shell #LinuxShell #Bash #Zsh linuxtldr.com/shellbench-too…
Inotifywait: Monitor Live Events on Files and Directories on Linux #Linux #CommandLine #ShellTips #ShellScript #SysAdmin #Scripting linuxtldr.com/install-inotif…
linuxtldr.com
Inotifywait: Monitor Live Events on Files and Directories on Linux
In this article, you will learn how to watch read, write, open, close, etc. events on a file or directory and get desktop notifications.
alias fbb='foo bar buz' の代わりに、履歴からコマンド実行してる。 Ctrl+R に hook した fzf のおかげで頭文字で曖昧検索して引き当てられる #ShellTips
Enter File or Directory with Space & Special Character in its Name? #linux #tips #shelltips #shell #commandline #network trendoceans.com/enter-file-or-…
Sometimes I discover I need to quote a parameter after I've started typing it. Though it's ugly, $ echo first" second third" parses to the same as $ echo "first second third" saving me from alt+b, quote, alt+f #lazy #shellTips
Counting Number of Files and Directories in a Specific Directory #Linux #ShellTips #LinuxTips #CLI #LinuxUbuntu ubuntushell.com/counting-numbe…
ubuntushell.com
Counting Number of Files and Directories in a Specific Directory
Learn how to find and count the total number of file and directory occurrences in a specific directory using the find and wc commands.
$ ls D{{Press ESC Key followed by the * Key}} $ ls Desktop Documents Downloads All the matching files/folders are now in the command line. #bashshelltips #shelltips #linux #macos #terminal #bash #bugbountytips #informationtechnology #informationsecurity #cybersecurity [3/3]
#ShellTips #Linux #CMD CALENDRIER : $- cal METEO : $- curl -s wttr.in/Paris | head -37
💡 In Bash, pipes (|) send only stdout, not errors. ⚠️ stderr goes straight to the terminal. 👉 To include errors: cmd1 2>&1 | cmd2 🔧 Use set -o pipefail for safer scripts. #Bash #Linux #ShellTips #ALX_BE #ALX_SE #ALX_PDBE
Master Linux One Command at a Time Manage Jobs: jobs – View background and suspended tasks in your current shell session. Easily track what’s running, stopped, or waiting. #LinuxCommands #jobs #ShellTips #SysAdmin #CommandLine #OpenSource #TechGuide #MasterLinux
Tired of Ctrl+R roulette? Laurie Tratt proposes a smarter, linear shell history search—clear, intuitive, and effective. tratt.net/laurie/blog/20… #ShellTips #CLI #DeveloperExperience
Typing less isn’t lazy, it’s efficient. If you run the same commands daily, let your shell do the work. Use alias to set shortcuts like : • alias gs="git status" • alias ll="ls -la" • alias ..="cd .." Now gs runs git status. Small tweaks, big speed-ups. #ShellTips #Linux
Tired of typing cd back and forth? 🤯 Use pushd and popd! 🔹 pushd /etc → Switches to /etc & saves your previous dir 🔹 popd → Returns you to the last saved dir 🔹 dirs -v → Shows your directory stack Effortless navigation! 🚀 #Linux #ShellTips
💻 Tired of using the mouse to fix command errors in your terminal? Learn how GNU Readline shortcuts can simplify your workflow! Use Alt+B and Ctrl+T for quick edits. Embrace efficiency and ditch the mouse! #GNUReadline #ShellTips #Productivity @EuberABa… ift.tt/PFV3BaD
ShellBench: Perform Benchmark Tests on Various Linux Shells #Linux #ShellTips #Shell #LinuxShell #Bash #Zsh linuxtldr.com/shellbench-too…
Inotifywait: Monitor Live Events on Files and Directories on Linux #Linux #CommandLine #ShellTips #ShellScript #SysAdmin #Scripting linuxtldr.com/install-inotif…
linuxtldr.com
Inotifywait: Monitor Live Events on Files and Directories on Linux
In this article, you will learn how to watch read, write, open, close, etc. events on a file or directory and get desktop notifications.
Counting Number of Files and Directories in a Specific Directory #Linux #ShellTips #LinuxTips #CLI #LinuxUbuntu ubuntushell.com/counting-numbe…
ubuntushell.com
Counting Number of Files and Directories in a Specific Directory
Learn how to find and count the total number of file and directory occurrences in a specific directory using the find and wc commands.
How to Empty Buffer and Cache Memory in Linux linuxshelltips.com/empty-buffer-c… via @linuxshelltips RT @linuxtoday #Linux #shelltips #linuxshelltips
Sometimes I discover I need to quote a parameter after I've started typing it. Though it's ugly, $ echo first" second third" parses to the same as $ echo "first second third" saving me from alt+b, quote, alt+f #lazy #shellTips
#shelltips 查看 tcp 链接状态统计 ```shell netstat -atn|awk '/^tcp/{++count[$NF]} END {for(a in count) print a,count[a]}' ```
#IfYouDidntKnow Running "cat /etc/passwd" gives an output that is a bit hard to read. Thanks to the column command, we can make it easier on the eyes. cat /etc/passwd | column -t -s : -t is used for creating a table -s defines the column delimiter, in this case ":" #ShellTips
Find average #RTT for a host #ping $ ping -c 10 host | tail -1 | awk -F "=" '{split($2,a,"/"); printf "%s ms\n", a[2]}' #shelltips #linux E.g:
Typing less isn’t lazy, it’s efficient. If you run the same commands daily, let your shell do the work. Use alias to set shortcuts like : • alias gs="git status" • alias ll="ls -la" • alias ..="cd .." Now gs runs git status. Small tweaks, big speed-ups. #ShellTips #Linux
Master Linux One Command at a Time Manage Jobs: jobs – View background and suspended tasks in your current shell session. Easily track what’s running, stopped, or waiting. #LinuxCommands #jobs #ShellTips #SysAdmin #CommandLine #OpenSource #TechGuide #MasterLinux
#ShellTips Aprovecha este fin de semana y haz un chequeo general de tu auto antes de hacer cualquier viaje.
La posición inicial y para circular derecho debe ser tomando el volante a las 9 y 3 horas del reloj. #ShellTips
💡 In Bash, pipes (|) send only stdout, not errors. ⚠️ stderr goes straight to the terminal. 👉 To include errors: cmd1 2>&1 | cmd2 🔧 Use set -o pipefail for safer scripts. #Bash #Linux #ShellTips #ALX_BE #ALX_SE #ALX_PDBE
Planea tu hoja de ruta, para evitar tráfico y llegar a tu destino en la hora indicada! #ShellTips #ShellHelixUltra
Te recomendamos chequear las luces y el limpiaparabrisas para andar siempre seguros! #ViajeroShell #ShellTips
Some tools forget to check is STDOUT isatty() before writing... Get rid of ansi #terminal colors with this command: sed -r "s/\x1B\[[0-9;]*?[m|K]//g" #shelltips #bash github.com/nil0x42/scripts
Cuando llueve, enciende la luz de lluvia trasera y los faros delanteros. No uses luces altas. #ShellTips
Estando atento/a a los sonidos del auto al andar, puedes detectar y prevenir futuros problemas mecánicos. #ShellTips
Cuando hay lluvia o la pista esté mojada, reduce la velocidad y siempre mantén una buena distancia con los demás. #ShellTips #ViajeroShell
Cargar equipaje en el techo del auto cambia el perfil aerodinámico de tu vehículo y consumirá más combustible. #ShellTips #ViajeroShell
Something went wrong.
Something went wrong.
United States Trends
- 1. #SmackDown 33.9K posts
- 2. Caleb Wilson 4,102 posts
- 3. Giulia 11.3K posts
- 4. #OPLive 1,214 posts
- 5. Lash Legend 4,115 posts
- 6. #TheLastDriveIn 1,692 posts
- 7. #BostonBlue 1,901 posts
- 8. Chelsea Green 4,888 posts
- 9. Reed 24.5K posts
- 10. Darryn Peterson 2,054 posts
- 11. Kansas 23K posts
- 12. Supreme Court 161K posts
- 13. Rockets 18.4K posts
- 14. Sengun 3,704 posts
- 15. #Dateline N/A
- 16. Harrison Barnes N/A
- 17. End of 3rd 1,395 posts
- 18. Nia Jax 2,684 posts
- 19. End 3Q N/A
- 20. Dizzy 12.5K posts