BASH_SRV Telegram 126
🔥 Быстрый поиск крупных файлов

Этот скрипт выведет 10 самых больших файлов в указанной директории:


#!/bin/bash
# автор: https://www.tgoop.com/bash_srv

DIR=${1:-/}

echo "📂 Топ-10 самых больших файлов в $DIR"
du -ah "$DIR" 2>/dev/null | sort -rh | head -n 10


📌 Использование:


./bigfiles.sh /var/log


Выведет список самых "тяжёлых" файлов в /var/log.
Если директория не указана — скрипт проверит весь корень /.

👉@bash_srv
👍72



tgoop.com/bash_srv/126
Create:
Last Update:

🔥 Быстрый поиск крупных файлов

Этот скрипт выведет 10 самых больших файлов в указанной директории:


#!/bin/bash
# автор: https://www.tgoop.com/bash_srv

DIR=${1:-/}

echo "📂 Топ-10 самых больших файлов в $DIR"
du -ah "$DIR" 2>/dev/null | sort -rh | head -n 10


📌 Использование:


./bigfiles.sh /var/log


Выведет список самых "тяжёлых" файлов в /var/log.
Если директория не указана — скрипт проверит весь корень /.

👉@bash_srv

BY Bash Советы




Share with your friend now:
tgoop.com/bash_srv/126

View MORE
Open in Telegram


Telegram News

Date: |

Matt Hussey, editorial director of NEAR Protocol (and former editor-in-chief of Decrypt) responded to the news of the Telegram group with “#meIRL.” During a meeting with the president of the Supreme Electoral Court (TSE) on June 6, Telegram's Vice President Ilya Perekopsky announced the initiatives. According to the executive, Brazil is the first country in the world where Telegram is introducing the features, which could be expanded to other countries facing threats to democracy through the dissemination of false content. Informative Earlier, crypto enthusiasts had created a self-described “meme app” dubbed “gm” app wherein users would greet each other with “gm” or “good morning” messages. However, in September 2021, the gm app was down after a hacker reportedly gained access to the user data. The group also hosted discussions on committing arson, Judge Hui said, including setting roadblocks on fire, hurling petrol bombs at police stations and teaching people to make such weapons. The conversation linked to arson went on for two to three months, Hui said.
from us


Telegram Bash Советы
FROM American