New: awkAll contenthive-129948hive-196917krhive-183959zzanhive-185836steemhive-180932hive-150122photographyhive-101145hive-183397hive-144064uncommonlabhive-184714hive-166405krsuccesshive-145157hive-188619hive-193637bitcoinhive-103599hive-193186hive-180301lifeTrendingNewHotLikersthevpnboss (77)in linux • 2 years agoAWK and CUT in Linux - a few examples!I am not writing this to teach you anything, I am rather writing it so that I will better remember these commands and how to use them. After all, it is easy to understand them, but it is harder to…justyy (82)in programming • 3 years agoBASH Function to Error Warnings and Messages with Terminal ColoursWe sometimes need in BASH script to display messages with different format/colour to terminal console. For example, the warnings messages are blue, and error messages are red. We can use the…justyy (82)in programming • 4 years agoBASH Function to Get Memory Information via AWKOn Linux, we can cat the file "/proc/meminfo" to display memory related information: $ cat /proc/memoinfojustyy (82)in wherein • 4 years agoHow to Use Hash Map to Count the Frequencies of Values and Iterate the Key-Value Pairs in AWK?AWK is a powerful text-processing programming language. Given a multi-million lines of text file containing the following data - we want to know the frequencies the delegation at each integer…albertccs1976 (44)in awk • 6 years agoAwk: Aprendiendo Shell Scripting usando el comando de terminal awkEl comando “awk” en los Sistemas Operativos Libres del tipo GNU/Linux es un comando muy poderoso, que nos ayuda a tener un mayor control al momento de procesar datos provenientes de otros comandos u…pmliang (25)in linux • 7 years agoAWK常见用法(二)AWK实例演示 当出现合并文件的需求时,可以考虑使用数组 合并两个文件,a1和a2: # cat a1pmliang (25)in linux • 7 years agoAWK常见用法(一)一、初识AWK AWK 有其他的衍生版本,比如 nawk 和 gawk ,在Linux发行版里,默认使用的是 gawk : # ls -l `which awk`cryptobabes (31)in awk • 8 years agoEmma Watson?Fit from far but far from fit BTC: 18mHoK6RhWZeSMmCXVbakVMfTx3WunUE9wtychebe (37)in security • 8 years agoMethod of killing all processes of the current shell□ ps | awk '{print $1}' | xargs kill -9 ○ ps : It prints the running processes ○ | awk '{print $1}' : It prints the first column of the result of ps(=pid) ○ | xargs kill -9: It compulsorily…