1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 15:53:34 +02:00

%: add Arabic translation (#15378)

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com>
This commit is contained in:
Ayad seghiri 2025-01-30 11:09:01 +01:00 committed by GitHub
parent 76246f279f
commit 97eb8847a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

28
pages.ar/common/%.md Normal file
View file

@ -0,0 +1,28 @@
# Percent sign
> إدارة الوظائف (Jobs).
> لمزيد من التفاصيل: <https://www.gnu.org/software/bash/manual/bash.html#Job-Control-Basics>.
- استدعاء الوظيفة الحالية إلى المقدمة:
`%`
- استدعاء الوظيفة السابقة إلى المقدمة:
`%-`
- استدعاء الوظيفة ذات الرقم `N` إلى المقدمة:
`%{{N}}`
- استدعاء الوظيفة التي يبدأ أمرها بـ `string` إلى المقدمة:
`%{{string}}`
- استدعاء الوظيفة التي يحتوي أمرها على `string` إلى المقدمة:
`%?{{string}}`
- استئناف وظيفة معلقة:
`%{{1}} &`