個人的備忘録:いつでも即答できるように、Linuxコマンド20選を簡潔にまとめてみた
https://qiita.com/free-honda/items/a4e1e0e61b569f3a3f7e?utm_campaign=popular_items&utm_medium=feed&utm_source=popular_items
個人的備忘録:いつでも即答できるように、Linuxコマンド20選を簡潔にまとめてみた
https://qiita.com/free-honda/items/a4e1e0e61b569f3a3f7e?utm_campaign=popular_items&utm_medium=feed&utm_source=popular_items
Hello everyone.
In today's article, we are learning how to write Linux commands and bash scripts from scratch to advanced level.
https://denizhalil.com/2024/10/24/mastering-linux-terminal-commands-guide/
#linux #linuxmint #cybersecurity #linuxcommand #shell #linuxterminal #command #cbersecurity #systemadministration
How to Use Envsubst to Replace Environment Variables in Linux
#Linux #SysAdmin #RHCSA #FOSS #LinuxCommand
https://linuxtldr.com/envsubst-command/
How to Execute Linux Command From Python Script
#Linux #Python #LinuxCommand #Programming #Coding #LinuxTips
https://ubuntushell.com/run-linux-command-from-python-script/
Tbmk: A Tool to Bookmark Frequently Used Commands in Linux
#Linux #LinuxTool #LinuxTips #LinuxCommand #DevOps #InfoSys #SysAdmin
https://linuxtldr.com/installing-tbmk/
How to Shrink Long or Multiple Commands into a Single Short Command
#Linux #LinuxTips #LinuxTricks #IT #SysAdmin #DevOps #Tech #LinuxCommand
https://linuxtldr.com/shrinking-long-or-multiple-commands-into-a-single-short-command/
We can use multiple tools to monitor system statistics, but if you are looking for virtual memory, use vmstat.
#linux #linuxmint #linuxcommand #opensource #performance #monitor
https://trendoceans.com/learn-about-virtual-memory-statistics-using-vmstat/
recall the toughest command
#linux #community #linuxcommand #dev #devops #security #cats
At first, the date command may seem like a simple utility to you, but once you try to execute the date command with different utilities, you will realize the real power.
#mistake #linuxcommand #ls
https://zenn.dev/mattn/articles/15f8efb2b89559
alias ls="ls -l"
というのが設定されている可能性もある、と
それはそうだな
#security #linuxcommand
sudoの脆弱性情報(Important: CVE-2021-3156 : Baron Samedi)
https://security.sios.com/vulnerability/sudo-security-vulnerability-20210127.html
#linuxcommand
One-liners
https://linuxcommandlibrary.com/basic/oneliners.html
なんかいろいろあるな
#AWS #ssh #linuxcommand
ssh -i
https://explainshell.com/explain?cmd=ssh+-i
identity file
.pemを指定してAWS接続
bash > 可変列の3ファイルを合成して、各行に3項目ずつ出力する実装 > 遅い実装と速い実装 > pasteでのワンライナーを教えていただきました
https://qiita.com/7of9/items/c96c6c573e68cbedbe61
pasteコマンド
普段使わないので忘れる
2009/03/05
ファイルが7000程度になると、lsコマンドが使えなくなる
そのため、
for dd in `ls ../DIR-SHP/TMT*`;do
を
for dd in `ls ../DIR-SHP/TMT[012345]*` `ls ../DIR-SHP/TMT[6789]*`;do
以下に分割した
とのメモは見つかった
rmやcatはファイルパス数が多すぎると失敗する
そのため、一度で実施しないということを過去にしたことはあります
#linuxcommand
#fileio
#procedure
とあるディレクトリがどのシンボリックリンクか知る方法
1. cd でそのディレクトリで移動
2. pwd -P
https://explainshell.com/explain?cmd=pwd+-P
lsで補完して見るより早い