Explore tweets tagged as #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
7
30
144
Tired of specifying namespaces every time with 'kubectl'? Let the terminal do the work! You can 'Ctrl+k' to cut after the cursor and 'Ctrl+y' to paste it anytime. #kubectl #kloiatips #kubernetes #tips #namespaces #shelltips
0
1
2
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
0
0
2
🤯 I've just discovered i was living in the past. join the future, use git fuzzy 😎. git-fuzzy: interactive `git` with the help of `fzf` - by @hhiranan . #linux #fzf #git #hacking #programming #development #shelltips
0
2
6
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.
0
3
3
Master #Linux One Command at a Time - View File Ends Easily: tail - Display Last Lines of a File. #LinuxTips #CommandLine #TailCommand #SysAdmin #LinuxCommands #TerminalTips #LearnLinux #OpenSource ##ServerLogs #BashCommands #LogFiles #ShellTips #DevOps #ITSupport #FileViewing
0
0
0
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:
0
0
1
Master #Linux One #Command at a Time.Navigate with ease:.cd – Change directories effortlessly and move around your file system like a pro. #LinuxBasics #cdCommand #LinuxCommands #CommandLine #CLI #SysAdmin #DevOps #LearnLinux #OpenSource #LinuxTips #TerminalSkills #ShellTips
0
0
0
Master #Linux One #Command at a Time.Start with the basics: ls – Effortlessly list files and directories in your current path. Simple, powerful, and essential for every Linux user. #LinuxBasics #TerminalTips #SysAdmin #DevOps #LinuxTips #LearnLinux #TechEducation #ShellTips #CLI
0
0
0
Tired of Ctrl+R roulette? . Laurie Tratt proposes a smarter, linear shell history search—clear, intuitive, and effective. #ShellTips #CLI #DeveloperExperience.
0
0
1
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.
0
0
0
ShellBench: Perform Benchmark Tests on Various Linux Shells.#Linux #ShellTips #Shell #LinuxShell #Bash #Zsh.
0
0
2
mkdir TempFile{1,2,3,4} // to create multiple directories w/ extensions. why did I not know about this! 😂 #shellTips.
0
0
0
Inotifywait: Monitor Live Events on Files and Directories on Linux.#Linux #CommandLine #ShellTips #ShellScript #SysAdmin #Scripting.
0
0
2
Counting Number of Files and Directories in a Specific Directory.#Linux #ShellTips #LinuxTips #CLI #LinuxUbuntu.
0
0
0
How to Install New (or Nerd) Fonts on Linux (Ultimate Guide).#Linux #Fonts #Nerd #Google #Shell #ShellTips #LinuxTips.
0
0
0
alias fbb='foo bar buz' の代わりに、履歴からコマンド実行してる。 Ctrl+R に hook した fzf のおかげで頭文字で曖昧検索して引き当てられる #ShellTips.
0
0
0