Monday, November 18, 2024

Linux - Continue

The following is a Linux Dictionary word of the day:

continue resume the next iteration of a loop in the current iteration of a for, while, or until loop.

Example:

if(( $a==5 ))

 then

 continue

fi



As an Amazon Associate, I earn from qualifying purchases.

Friday, November 15, 2024

Linux - Containers

The following is a Linux Dictionary word of the day:

containers aspect which allows for the packaging of applications with their entire runtime environment which includes all of the files necessary to make it run. Containers are constant as they move from development, to testing and production-based environments.


Monday, November 11, 2024

Linux - Compress

The following is a Linux Dictionary word of the day:

compress command utilized to compress files.

-f parameter to force operation.

Example: compress hello.txt


As an Amazon Associate, I earn from qualifying purchases.

Friday, November 8, 2024

Linux - Command Line

The following is a Linux Dictionary word of the day:

command line – aspect provided directly on the screen where one types specific commands.

Google Pixel Buds Pro 2 - Wireless Earbuds with Active Noise Cancellation – Bluetooth Headphones - Hazel

https://amzn.to/4eoDKJe

As an Amazon Associate, I earn from qualifying purchases.


Tuesday, November 5, 2024

Linux - Comm

The following is a Linux Dictionary word of the day:

comm compares two sorted files line by line showing unique lines and then the common lines.

Example: comm hello.txt hello2.txt

As an Amazon Associate, I earn from qualifying purchases.

Sunday, November 3, 2024

Linux - Cmp

The following is a Linux Dictionary word of the day:

cmp compares two files and only reports if the files are different.

Example: cmp hello.txt hello2.txt

As an Amazon Associate, I earn from qualifying purchases.