Bash

Tools, Functions bash it : zsh์ฒ˜๋Ÿผ ์ด์˜๊ฒŒ, ๋‹ค์–‘ํ•œ ๊ธฐ๋Šฅ์œผ๋กœ ๊พธ๋ฏธ๊ธฐ bash color : ํ„ฐ๋ฏธ๋„ ์ปฌ๋Ÿฌ ์ถœ๋ ฅ ๋ฐ ์ œ์–ด Bash Programming bash read lines : ํŒŒ์ผ์—์„œ ํ•œ ์ค„์”ฉ ๋ผ์ธ์„ ์ฝ์–ด ์˜ค๊ธฐ Links bash config files https://floatingoctothorpe.uk/2018/bash-config-and-where-it-lives.html

2022-08-26 ยท 35 words

Bash readlines how to

Method 1 for read -r line do echo $line done < input_file.txt > out_file.txt Method 1 file=$(cat input_file.txt) for line in $file do echo $line done < input_file.txt > out_file.txt Links https://www.geeksforgeeks.org/bash-scripting-how-to-read-a-file-line-by-line/

2022-08-26 ยท 32 words

Zsh

zsh install - zsh ์„ค์น˜ ๋ฐ ์„ค์ •

2022-08-23 ยท (updated 2022-08-26) ยท 7 words