DeveloperBreeze

Command-Line Development Tutorials, Guides & Insights

Unlock 4+ expert-curated command-line tutorials, real-world code snippets, and modern dev strategies. From fundamentals to advanced topics, boost your command-line skills on DeveloperBreeze.

Tutorial

Getting Started with FFmpeg

ffmpeg -i input.mp4 output.avi
  • -i input.mp4: Specifies the input file.
  • output.avi: Specifies the output file with the desired format.

Aug 21, 2024
Read More
Code
bash

How to view free space on a Linux server

df -h
  • df: This command stands for "disk free" and reports the amount of disk space used and available on Linux filesystems.
  • -h: This option stands for "human-readable" format, which makes the output easier to read by showing sizes in KB, MB, GB, etc.

Aug 11, 2024
Read More
Tutorial
bash

Finding the Top 10 Biggest Files on an Ubuntu Server

By following this tutorial, you should be able to efficiently identify the largest files on your Ubuntu server. This information can help you manage disk space and make informed decisions about file storage and deletion.

For further optimization, consider creating a script that automates this process and sends reports to your email or logs the output for regular monitoring.

Aug 11, 2024
Read More
Code
php bash

Laravel Artisan Commands Cheatsheet

  • Fresh Migration (Rollback and Run All)
  php artisan migrate:fresh

Aug 03, 2024
Read More