Horje
csv to column awk Code Example
csv to column awk
cat * |  awk 'BEGIN { RS="," } {print $0}' 
cat * |  awk '{ RS="," } {print $0}'
# $0 mean print everything, play with print $1 # $2 when you have more rows 


cat file | awk 'BEGIN { RS="," }1'

https://riptutorial.com/awk/example/11074/rs---record-separator
https://www.unix.com/shell-programming-and-scripting/168415-awk-transpose-csv-row-column.html




Shell

Related
how to upgrade a kubeone cluster Code Example how to upgrade a kubeone cluster Code Example
docker compose logs container stdout Code Example docker compose logs container stdout Code Example
Pulling a branch Code Example Pulling a branch Code Example
aws ecr list repositories from shared endpoint repo Code Example aws ecr list repositories from shared endpoint repo Code Example
linux find jpg sorted by date Code Example linux find jpg sorted by date Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8