Thursday, December 12, 2024

Linux - Curl

The following is a Linux Dictionary word of the day:

curl – display, upload or download data from one server to another using supported protocols (FTP, HTTP, IMAP, POP3, SCP, SFTP, TFTP, etc.).

Example displays contents of URL:

curl http://www.kmo.name

Example using curl with ftp to download all files in free directory that have oneill in the name and are a .pdf:

curl ftp://ftp.kmo.name/free/[oneill].pdf



As an Amazon Associate, I earn from qualifying purchases.

Sunday, December 8, 2024

Linux - Cu

The following is a Linux Dictionary word of the day:

cu – command stands for call up and is utilized to connect to another Linux system.

~. Used to terminate the current connected conversation.

~? Used to display all available commands to utilize.

-c parameter used to know the phone number to call.

-p parameter of the port to be utilized.

-s parameter of the speed baud rate to utilize.              

-z parameter utilized for the system to call.

Example: cu -s 38400 1234567890


Tuesday, December 3, 2024

Linux - Ctags

The following is a Linux Dictionary word of the day:

ctags – command creates tags in files which then can be utilized for referencing.

-a parameter for appending.

-F parameter for searching for a pattern.

-R parameter to resurse through all files.              

Example: ctags -R *

As an Amazon Associate, I earn from qualifying purchases.

Sunday, December 1, 2024

Linux - Csplit

The following is a Linux Dictionary word of the day:

csplit command utilized to split a file into several parts based on context lines provided.

Example: csplit hello.txt 5

As an Amazon Associate, I earn from qualifying purchases.

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.