Skip to content

Instantly share code, notes, and snippets.

@luckydevilru
Last active March 22, 2024 11:21
Show Gist options
  • Save luckydevilru/b8a852bc7f992b142d9ede246690d9c4 to your computer and use it in GitHub Desktop.
Save luckydevilru/b8a852bc7f992b142d9ede246690d9c4 to your computer and use it in GitHub Desktop.
админиcтрирование linux ubuntu шпаргалка
архивирование файлов с исключением папок, файлов:
tar -zcpvf site.tar.gz --exclude={upload/video,bitrix/backup,bitrix/cache,bitrix/managed_cache,/.git,/upload}
zip -r apps.zip ../apps -x "**/vendor/*" -x "**/logs/*" -x "**/log/*" -x "**/.idea/*" -x "**/upload/*" -x "**/uploads/*" -x "**/.git/*" -x "**/cache/*" -x "**/bundles/*" -x "**/bundle/*" -x "*.sqlite" -x "*.tar" -x "*.zip" -x "*.gz"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment