Browsing Vietnamese translation

Don't show this notice anymore
Before translating, be sure to go through Ubuntu Translators instructions and Vietnamese guidelines.
510519 of 547 results
510.
Mark shell variables as unchangeable.

Mark each NAME as read-only; the values of these NAMEs may not be
changed by subsequent assignment. If VALUE is supplied, assign VALUE
before marking as read-only.

Options:
-a[tab]refer to indexed array variables
-A[tab]refer to associative array variables
-f[tab]refer to shell functions
-p[tab]display a list of all readonly variables and functions

An argument of `--' disables further option processing.

Exit Status:
Returns success unless an invalid option is given or NAME is invalid.
[tab] represents a tab character. Please write it exactly the same way, [tab], in your translation.
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
(no translation yet)
Located in builtins.c:1151
511.
Shift positional parameters.

Rename the positional parameters $N+1,$N+2 ... to $1,$2 ... If N is
not given, it is assumed to be 1.

Exit Status:
Returns success unless N is negative or greater than $#.
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
Dịch vị trí đối số.

Thay đổi tên của đối số vị trí $N+1,$N+2 … thành $1,$2 …
N là 1 nếu không chỉ định.

Trạng thái thoát:
Trả lại thành công trừ khi N âm hay lớn hơn $#.
Translated by Trần Ngọc Quân
Located in builtins.c:1203
512.
Execute commands from a file in the current shell.

Read and execute commands from FILENAME in the current shell. The
entries in $PATH are used to find the directory containing FILENAME.
If any ARGUMENTS are supplied, they become the positional parameters
when FILENAME is executed.

Exit Status:
Returns the status of the last command executed in FILENAME; fails if
FILENAME cannot be read.
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
Thực thi lệnh từ tập tin trong hệ vỏ hiện tại.

Đọc và thực thi lệnh từ TẬP-TIN trong hệ vỏ đang chạy. $PATH được
dùng để tìm thư mục chứa tập tin này. Nếu có đối số thì mỗi đối số
trở thành tham số vị trí khi TẬP-TIN được thực thi.

Trạng thái thoát:
Trả lại trạng thái của câu lệnh cuối cùng được thực thi trong
TẬP-TIN; không thành công nếu không thể đọc TẬP-TIN.
Translated by Trần Ngọc Quân
Located in builtins.c:1215 builtins.c:1230
513.
Suspend shell execution.

Suspend the execution of this shell until it receives a SIGCONT signal.
Unless forced, login shells cannot be suspended.

Options:
-f[tab]force the suspend, even if the shell is a login shell

Exit Status:
Returns success unless job control is not enabled or an error occurs.
[tab] represents a tab character. Please write it exactly the same way, [tab], in your translation.
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
Ngưng chạy hệ vỏ.

Ngưng chạy hệ vỏ này đến khi nhận tín hiệu SIGCONT. Nếu không ép
buộc thì không thể ngưng chạy hệ vỏ đăng nhập.

Tùy chọn:
[tab]-f[tab]buộc ngưng, thậm chí với hệ vỏ đăng nhập

Trạng thái thoát:
Trả lại thành công trừ khi chức năng điều khiển công việc không
được bật hoặc gặp lỗi.
Translated by Trần Ngọc Quân
Located in builtins.c:1246
514.
Evaluate conditional expression.

Exits with a status of 0 (true) or 1 (false) depending on
the evaluation of EXPR. Expressions may be unary or binary. Unary
expressions are often used to examine the status of a file. There
are string operators and numeric comparison operators as well.

The behavior of test depends on the number of arguments. Read the
bash manual page for the complete specification.

File operators:

-a FILE True if file exists.
-b FILE True if file is block special.
-c FILE True if file is character special.
-d FILE True if file is a directory.
-e FILE True if file exists.
-f FILE True if file exists and is a regular file.
-g FILE True if file is set-group-id.
-h FILE True if file is a symbolic link.
-L FILE True if file is a symbolic link.
-k FILE True if file has its `sticky' bit set.
-p FILE True if file is a named pipe.
-r FILE True if file is readable by you.
-s FILE True if file exists and is not empty.
-S FILE True if file is a socket.
-t FD True if FD is opened on a terminal.
-u FILE True if the file is set-user-id.
-w FILE True if the file is writable by you.
-x FILE True if the file is executable by you.
-O FILE True if the file is effectively owned by you.
-G FILE True if the file is effectively owned by your group.
-N FILE True if the file has been modified since it was last read.

FILE1 -nt FILE2 True if file1 is newer than file2 (according to
modification date).

FILE1 -ot FILE2 True if file1 is older than file2.

FILE1 -ef FILE2 True if file1 is a hard link to file2.

String operators:

-z STRING True if string is empty.

-n STRING
STRING True if string is not empty.

STRING1 = STRING2
True if the strings are equal.
STRING1 != STRING2
True if the strings are not equal.
STRING1 < STRING2
True if STRING1 sorts before STRING2 lexicographically.
STRING1 > STRING2
True if STRING1 sorts after STRING2 lexicographically.

Other operators:

-o OPTION True if the shell option OPTION is enabled.
-v VAR[tab] True if the shell variable VAR is set
! EXPR True if expr is false.
EXPR1 -a EXPR2 True if both expr1 AND expr2 are true.
EXPR1 -o EXPR2 True if either expr1 OR expr2 is true.

arg1 OP arg2 Arithmetic tests. OP is one of -eq, -ne,
-lt, -le, -gt, or -ge.

Arithmetic binary operators return true if ARG1 is equal, not-equal,
less-than, less-than-or-equal, greater-than, or greater-than-or-equal
than ARG2.

Exit Status:
Returns success if EXPR evaluates to true; fails if EXPR evaluates to
false or an invalid argument is given.
[tab] represents a tab character. Please write it exactly the same way, [tab], in your translation.
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
(no translation yet)
Located in builtins.c:1231
515.
Evaluate conditional expression.

This is a synonym for the "test" builtin, but the last argument must
be a literal `]', to match the opening `['.
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
Định giá biểu thức điều kiện.

Lệnh này cùng chức năng lệnh tích hợp "test", nhưng đối số cuối
cùng phải là ký tự “]” để khớp với “[” ở đầu.
Translated by Trần Ngọc Quân
Located in builtins.c:1344
516.
Display process times.

Prints the accumulated user and system times for the shell and all of its
child processes.

Exit Status:
Always succeeds.
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
Hiển thị thời lượng chạy tiến trình.

In thời lượng chạy ở mức người dùng và hệ thống của hệ vỏ và các
tiến trình con.

Trạng thái thoát:
Lúc nào cũng thành công.
Translated by Trần Ngọc Quân
Located in builtins.c:1353
517.
Trap signals and other events.

Defines and activates handlers to be run when the shell receives signals
or other conditions.

ARG is a command to be read and executed when the shell receives the
signal(s) SIGNAL_SPEC. If ARG is absent (and a single SIGNAL_SPEC
is supplied) or `-', each specified signal is reset to its original
value. If ARG is the null string each SIGNAL_SPEC is ignored by the
shell and by the commands it invokes.

If a SIGNAL_SPEC is EXIT (0) ARG is executed on exit from the shell. If
a SIGNAL_SPEC is DEBUG, ARG is executed before every simple command. If
a SIGNAL_SPEC is RETURN, ARG is executed each time a shell function or a
script run by the . or source builtins finishes executing. A SIGNAL_SPEC
of ERR means to execute ARG each time a command's failure would cause the
shell to exit when the -e option is enabled.

If no arguments are supplied, trap prints the list of commands associated
with each signal.

Options:
-l[tab]print a list of signal names and their corresponding numbers
-p[tab]display the trap commands associated with each SIGNAL_SPEC

Each SIGNAL_SPEC is either a signal name in <signal.h> or a signal number.
Signal names are case insensitive and the SIG prefix is optional. A
signal may be sent to the shell with "kill -signal $$".

Exit Status:
Returns success unless a SIGSPEC is invalid or an invalid option is given.
[tab] represents a tab character. Please write it exactly the same way, [tab], in your translation.
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
Bẫy tín hiệu và sự kiện khác.

Định nghĩa và kích hoạt các bộ xử lý khi hệ vỏ nhận được tín hiệu
hay các điều kiện khác.

ĐỐI-SỐ là một lệnh cần đọc và thực thi khi hệ vỏ nhận được tín
hiệu theo đặc tả tín hiệu ĐTTH. Nếu không có ĐỐI-SỐ (và chỉ cung
cấp một ĐTTH), hoặc cung cấp “-”. mỗi tín hiệu được xác định thì
được đặt lại về giá trị gốc. Nếu ĐỐI-SỐ là chuỗi rỗng thì mỗi ĐTTH
bị hệ vỏ và những lệnh bên trong bỏ qua.

Nếu ĐTTH là EXIT (0) thì ĐỐI-SỐ được thực thi khi thoát
khỏi hệ vỏ. Nếu là DEBUG, ĐỐI-SỐ được thực thi trước mỗi lệnh đơn
giản. Nếu là RETURN, ĐỐI-SỐ được thực thi mỗi khi hàm hệ vỏ hay
một văn lệnh, được chạy bởi lệnh “.” hoặc “source”. kết thúc thực
thi. ĐTTH ERR nghĩa là thực thi ĐỐI-SỐ mỗi khi lệnh gặp
lỗi dẫn đến thoát hệ vỏ khi bật tùy chọn -e.

Nếu không có đối số, “trap” sẽ in danh sách của các lệnh gắn với
các tín hiệu.

Tùy chọn:
-l[tab]in danh sách tên tín hiệu và mã số tương ứng
-p[tab]hiển thị lệnh bắt tương ứng với mỗi ĐTTH

Mỗi ĐTTH hoặc là tên tín hiệu trong <signal.h>, hoặc mã
số tín hiệu. Tên tín hiệu không phân biệt chữ hoa/thường, và không
bắt buộc phải dùng tiền tố SIG. Có thể gửi tín hiệu cho hệ vỏ bằng
"kill -signal $$".

Trạng thái thoát:
Trả lại thành công trừ phi đưa ra ĐTTH sai hay tùy chọn
sai.
Translated by Trần Ngọc Quân
Located in builtins.c:1365
518.
Display information about command type.

For each NAME, indicate how it would be interpreted if used as a
command name.

Options:
-a[tab]display all locations containing an executable named NAME;
[tab]includes aliases, builtins, and functions, if and only if
[tab]the `-p' option is not also used
-f[tab]suppress shell function lookup
-P[tab]force a PATH search for each NAME, even if it is an alias,
[tab]builtin, or function, and returns the name of the disk file
[tab]that would be executed
-p[tab]returns either the name of the disk file that would be executed,
[tab]or nothing if `type -t NAME' would not return `file'.
-t[tab]output a single word which is one of `alias', `keyword',
[tab]`function', `builtin', `file' or `', if NAME is an alias, shell
[tab]reserved word, shell function, shell builtin, disk file, or not
[tab]found, respectively

Arguments:
NAME[tab]Command name to be interpreted.

Exit Status:
Returns success if all of the NAMEs are found; fails if any are not found.
[tab] represents a tab character. Please write it exactly the same way, [tab], in your translation.
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
Hiển thị thông tin loại câu lệnh.

Đối với mỗi TÊN, chỉ ra cách thông dịch lệnh khi được thực thi
theo tên lệnh.

Tùy chọn:
-a[tab]hiển thị mọi vị trí chứa tập tin thực thi được có TÊN;
[tab]không đặt tùy chọn “-p” thì bao gồm các bí danh, lệnh
[tab]dựng sẵn và hàm.
-f[tab]ngăn tra cứu hàm hệ vỏ
-P[tab]buộc tìm kiếm PATH đối với mỗi TÊN, thậm chí nếu nó là
[tab]bí danh, lệnh dựng sẵn hay hàm, và trả lại tên của tập
[tab]tin trên đĩa mà sẽ được thực thi
-p[tab]trả về hoặc tên của tập tin trên đĩa mà sẽ được thực
[tab][tab]thi, hoặc gì cả “type -t TÊN” sẽ không trả về “file”
[tab][tab](tập tin).
-t[tab]xuất một trong những từ đơn “alias”, “keyword”, “function”,
[tab]“builtin”, “file” hoặc “”, nếu TÊN tương ứng là bí danh,
[tab]từ khoá,hàm, lệnh hệ vỏ dựng sẵn, tập tin
[tab]trên đĩa, hoặc không tìm thấy.

Đối số:
TÊN[tab]tên câu lệnh cần giải thích.

Trạng thái thoát:
Trả lại thành công nếu tìm thấy tất cả các TÊN; không thì bị lỗi.
Translated by Trần Ngọc Quân
Located in builtins.c:1368
519.
Modify shell resource limits.

Provides control over the resources available to the shell and processes
it creates, on systems that allow such control.

Options:
-S[tab]use the `soft' resource limit
-H[tab]use the `hard' resource limit
-a[tab]all current limits are reported
-b[tab]the socket buffer size
-c[tab]the maximum size of core files created
-d[tab]the maximum size of a process's data segment
-e[tab]the maximum scheduling priority (`nice')
-f[tab]the maximum size of files written by the shell and its children
-i[tab]the maximum number of pending signals
-l[tab]the maximum size a process may lock into memory
-m[tab]the maximum resident set size
-n[tab]the maximum number of open file descriptors
-p[tab]the pipe buffer size
-q[tab]the maximum number of bytes in POSIX message queues
-r[tab]the maximum real-time scheduling priority
-s[tab]the maximum stack size
-t[tab]the maximum amount of cpu time in seconds
-u[tab]the maximum number of user processes
-v[tab]the size of virtual memory
-x[tab]the maximum number of file locks

If LIMIT is given, it is the new value of the specified resource; the
special LIMIT values `soft', `hard', and `unlimited' stand for the
current soft limit, the current hard limit, and no limit, respectively.
Otherwise, the current value of the specified resource is printed. If
no option is given, then -f is assumed.

Values are in 1024-byte increments, except for -t, which is in seconds,
-p, which is in increments of 512 bytes, and -u, which is an unscaled
number of processes.

Exit Status:
Returns success unless an invalid option is supplied or an error occurs.
[tab] represents a tab character. Please write it exactly the same way, [tab], in your translation.
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
(no translation yet)
Located in builtins.c:1399
510519 of 547 results

This translation is managed by Ubuntu Vietnamese Translators, assigned by Ubuntu Translators.

You are not logged in. Please log in to work on translations.

Contributors to this translation: Clytie Siddall, Trần Ngọc Quân.