Faster way to delete large number of files on linux

rsync -a --delete empty/ x

Utworzony 4y | 20 sie 2020, 14:30:21


Zaloguj się, aby dodać komentarz

Inne posty w tej grupie

Download youtube video and extract audio into mp3
./yt-dlp_linux $URL -x --audio-format mp3
4 mar 2023, 19:01:10 | Quick commands
Quick convert from hex to dec

echo $((16#FF))

16 - numerical system FF - number in specified numerical system

19 lis 2022, 13:38:47 | Quick commands
Last 10 files based on last changes

find -ctime -2 -name "*.php" -not -path "./vendor/*" -not -path "./var/*" -not -path "./migrations/*" -printf "%T@ %Tc %p\n" | head -10

19 lis 2022, 13:31:26 | Quick commands
Windows - how to run program with input from file on command line

cmd.exe /c ".\main.exe < .\text.txt"

1 lis 2020, 20:57:35 | Quick commands
Start chrome with insecure (self signed) certificates

chrome.exe --ignore-certificate-errors --unsafely-treat-insecure-origin-as-secure=https://www.devdomain.com/

17 sie 2020, 08:24:33 | Quick commands
Sort folders by their sizes

du -sBM * | sort -n

20 lip 2020, 18:23:43 | Quick commands
scp /home/upload_directory/* user@yourhost.com:/va

scp /home/upload_directory/* user@yourhost.com:/var/www/yourhost.com/upload_directory

21 cze 2020, 07:22:52 | Quick commands