Tag

Exec

1 views collected around this technical thread.

Deepin Linux
Deepin Linux
Mar 10, 2025 · Fundamentals

Understanding Linux Process Creation, Waiting, and Execution: fork, wait, and exec

This article explains how Linux processes are created, managed, and replaced using the fork, wait (including waitpid), and exec system calls, covering their prototypes, return values, copy‑on‑write optimization, and practical C code examples that demonstrate their coordinated use in real‑world scenarios.

C ProgrammingExecLinux
0 likes · 25 min read
Understanding Linux Process Creation, Waiting, and Execution: fork, wait, and exec
Lobster Programming
Lobster Programming
Feb 24, 2025 · Databases

Mastering Redis Transactions: Commands, Rollback Strategies, and Limitations

Redis, a non‑relational database, implements transaction-like behavior using commands such as MULTI, EXEC, DISCARD, and WATCH, allowing queued execution, optimistic locking, and various rollback granularities, though its semantics differ from traditional relational database transactions.

ExecMultiNoSQL
0 likes · 5 min read
Mastering Redis Transactions: Commands, Rollback Strategies, and Limitations
Test Development Learning Exchange
Test Development Learning Exchange
Jan 20, 2025 · Fundamentals

Understanding Python's exec() Function: Syntax, Examples, and Best Practices

This article explains Python's built‑in exec() function, covering its syntax, parameter options, practical code examples, security considerations, performance impacts, and recommended best‑practice guidelines for safely using dynamic code execution.

ExecPythonSecurity
0 likes · 5 min read
Understanding Python's exec() Function: Syntax, Examples, and Best Practices
System Architect Go
System Architect Go
Sep 22, 2024 · Cloud Native

Understanding the Internal Process of kubectl Commands (e.g., kubectl exec)

This article explains how the kubectl command interacts with the Kubernetes control plane, detailing one‑way HTTPS requests and two‑way WebSocket communications, and walks through the full execution flow of a kubectl exec command across kube‑api‑server, kubelet, and the CRI runtime.

CRIExecKubelet
0 likes · 6 min read
Understanding the Internal Process of kubectl Commands (e.g., kubectl exec)
Test Development Learning Exchange
Test Development Learning Exchange
Aug 2, 2023 · Fundamentals

Dynamic Code Execution and Code Generation in Python: Techniques and Practical Scenarios

This article explains Python's dynamic code execution and code generation techniques, covering the exec function, code templates, and six practical examples such as dynamic module import, class loading, function invocation, class definition, function creation, and runtime modification of classes or functions.

ExecPythonTemplates
0 likes · 5 min read
Dynamic Code Execution and Code Generation in Python: Techniques and Practical Scenarios
Python Programming Learning Circle
Python Programming Learning Circle
Nov 17, 2021 · Fundamentals

Understanding Python eval(), exec(), compile(), globals() and locals() Functions

This article explains the purpose, usage, parameters, return values, and differences of Python's eval, exec, compile, globals, and locals functions, providing detailed code examples and output analysis to help readers grasp how these built‑ins work in various execution contexts.

ExecPythoncompile
0 likes · 13 min read
Understanding Python eval(), exec(), compile(), globals() and locals() Functions
php中文网 Courses
php中文网 Courses
Feb 7, 2021 · Information Security

Scanning Files for Viruses with ClamAV and PHP on Linux

This guide explains how to configure ClamAV on Linux, run the clamdscan command to detect malicious files, and invoke the scanner from PHP using the exec function, including sample configuration and output details.

ClamAVExecLinux
0 likes · 2 min read
Scanning Files for Viruses with ClamAV and PHP on Linux
Qunar Tech Salon
Qunar Tech Salon
Jun 19, 2015 · Fundamentals

Understanding Code, Programs, and Processes in Linux: Lifecycle, Fork, Exec, and Init

This article explains the differences between code, programs, and processes in Linux, demonstrates how to compile and run a simple program, explores parent‑child relationships, the role of the init process, the process lifecycle, and the copy‑on‑write mechanism.

ExecLinuxcopy-on-write
0 likes · 10 min read
Understanding Code, Programs, and Processes in Linux: Lifecycle, Fork, Exec, and Init