Saturday, November 30, 2024

Linux - Crontab

The following is a Linux Dictionary word of the day:

crontab table used with the cron command to edit, read and remove the files read by the cron daemon. Each '*' asterisk stands for a portion of either the time or date with the corresponding column in each row.

Soundbot SB510 HD Water Resistant Bluetooth Shower Speaker, Handsfree Portable Speakerphone with Built-in Mic, 6hrs of Playtime, Control Buttons and Dedicated Suction Cup for Showers (Black)

https://amzn.to/4fOAsk1

As an Amazon Associate, I earn from qualifying purchases.


Monday, November 25, 2024

Linux - Cron

The following is a Linux Dictionary word of the day:

cron service to execute scheduled commands or scripts every minute, hour, day of the month, month of the year, day of the week. Each '*' asterisk stands for a portion of either the time or date with the corresponding column in each row. Cron needs to be utilized with a crontab file.

25 Simple Linux Shell Scripts

https://amzn.to/4hUW1Rl

As an Amazon Associate, I earn from qualifying purchases.

Friday, November 22, 2024

Linux - Cpio

The following is a Linux Dictionary word of the day:

cpio copies files to and from an archive.

-o parameter which creates the archive.

-v parameter prints the names of the files as they are added to the archive.

Example: ls | cpio -ov > archive_of_files.cpio



As an Amazon Associate, I earn from qualifying purchases.

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.