Elektrine lite

← Feed

@sinextitan@lemmy.world

Post #3986814

2026-07-21 13:26 UTC

for me and those that follow. could you please explain what does what?

Replies (1)

  • @JoMiran@lemmy.ml 2026-07-21 13:32

    find dir1 – find something within directory “dir1” -type f – specifies that what you are looking fir is a file -name ‘crunk’ – the file name is ‘crunk’ -exec bash -c – for the results, execute bash command The command executed is move (mv) ‘mv “$0” “${0/crunk/chunk}”’ {} ; – move from crunk to chunk

    Open ##3986929