Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tar: add Arabic translation #15565

Merged
merged 3 commits into from
Feb 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions pages.ar/common/tar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# tar

> أداة أرشفة.
> غالبًا ما تُستخدم مع طريقة ضغط، مثل `gzip` أو `bzip2`.
> لمزيد من التفاصيل: <https://www.gnu.org/software/tar>.

- إنشاء[c] أرشيف وكتابته إلى ملف[f]:

`tar cf {{path/to/target.tar}} {{path/to/file1 path/to/file2 ...}}`

- إنشاء[c] أرشيف g[z]ipped وكتابته إلى [f]ملف:

`tar czf {{path/to/target.tar.gz}} {{path/to/file1 path/to/file2 ...}}`

- إنشاء[c] أرشيف g[z]ipped (مضغوط) من مجلد باستخدام المسارات النسبية:

`tar czf {{path/to/target.tar.gz}} --directory={{path/to/directory}} .`

- فك[x] ضغط ملف أرشيف (مضغوط) في المجلد الحالي بالتفصيل [v]:

`tar xvf {{path/to/source.tar[.gz|.bz2|.xz]}}`

- فك[x] ضغط ملف أرشيف (مضغوط) في مجلد محدد:

`tar xf {{path/to/source.tar[.gz|.bz2|.xz]}} --directory={{path/to/directory}}`

- إنشاء أرشيف[c] مضغوط وكتابته إلى ملف[f]، مع تحديد برنامج الضغط تلقائيًا[a] بناءً على امتداد الملف:

`tar caf {{path/to/target.tar.xz}} {{path/to/file1 path/to/file2 ...}}`

- عرض[t] محتويات ملف[f] tar بالتفصيل[v]:

`tar tvf {{path/to/source.tar}}`

- فك[x] ضغط الملفات المطابقة لنمط معين من ملف[f] أرشيف:

`tar xf {{path/to/source.tar}} --wildcards "{{*.html}}"`
Loading