#shelltips 검색 결과
#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:
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
💡 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
Close equivalent to 'netstat -tunap' on macOS: alias netstat='lsof -nP -i4 +c 15' #shelltips
alias fbb='foo bar buz' の代わりに、履歴からコマンド実行してる。 Ctrl+R に hook した fzf のおかげで頭文字で曖昧検索して引き当てられる #ShellTips
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
#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.
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
#IfYouDidntKnow When you enter a command in Terminal and see "Permission denied" or "Operation not permitted" because you forgot to run it as sudo, just type: "sudo !!" !! will rerun the very last command you entered. !-2 will run the second last command and so on. #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
dev.to
GNU Readline: Uma experiência Shell mais agradável no seu terminal
O usual de iniciantes usando Shell em terminais, como o GNU Bash, após errar comandos, é usar...
$ 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]
ADDITIONAL TIPS: Typing "cd -" takes you back to the previous directory. Not back up a level, but to the very last directory you were in. Typing just "cd" takes you to the logged in user's home directory. [3/3] #shelltips #bash #bugbountytips #bashshelltips #linux #macos
💡 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
dev.to
GNU Readline: Uma experiência Shell mais agradável no seu terminal
O usual de iniciantes usando Shell em terminais, como o GNU Bash, após errar comandos, é usar...
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
#ShellTips Aprovecha este fin de semana y haz un chequeo general de tu auto antes de hacer cualquier viaje.
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:
La posición inicial y para circular derecho debe ser tomando el volante a las 9 y 3 horas del reloj. #ShellTips
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
💡 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
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
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
Por tu seguridad, controla siempre el líquido de frenos. Su nivel puede bajar debido al uso, desgaste y pérdidas. #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
Llegamos a la recta final del 2016 y se viene el verano. No olvides tu mantenimiento de fin de año antes de salir de vacaciones! #ShellTips
Por su salud y seguridad, no dejes a tus mascotas esperando dentro de tu vehículo cuando se registran altas temperaturas. #ShellTips
Something went wrong.
Something went wrong.
United States Trends
- 1. Grammy 301K posts
- 2. Dizzy 9,413 posts
- 3. Clipse 18K posts
- 4. Kendrick 58.3K posts
- 5. addison rae 21.9K posts
- 6. olivia dean 14.1K posts
- 7. #GOPHealthCareShutdown 4,132 posts
- 8. AOTY 19.9K posts
- 9. Leon Thomas 17.7K posts
- 10. ravyn lenae 3,865 posts
- 11. Katseye 111K posts
- 12. #FanCashDropPromotion 3,797 posts
- 13. Alfredo 2 N/A
- 14. gaga 96.8K posts
- 15. Kehlani 32.7K posts
- 16. lorde 12K posts
- 17. Orban 29.6K posts
- 18. #FursuitFriday 11.7K posts
- 19. The Weeknd 11.7K posts
- 20. Alex Warren 6,911 posts