1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591
|
@c Copyright (C) 1996-2025 The Octave Project Developers
@c
@c This file is part of Octave.
@c
@c Octave is free software: you can redistribute it and/or modify it
@c under the terms of the GNU General Public License as published by
@c the Free Software Foundation, either version 3 of the License, or
@c (at your option) any later version.
@c
@c Octave is distributed in the hope that it will be useful, but
@c WITHOUT ANY WARRANTY; without even the implied warranty of
@c MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
@c GNU General Public License for more details.
@c
@c You should have received a copy of the GNU General Public License
@c along with Octave; see the file COPYING. If not, see
@c <https://www.gnu.org/licenses/>.
@node System Utilities
@chapter System Utilities
This chapter describes the functions that are available to allow you to
get information about what is happening outside of Octave, while it is
still running, and use this information in your program. For example,
you can get information about environment variables, the current time,
and even start other programs from the Octave prompt.
@menu
* Timing Utilities::
* Filesystem Utilities::
* File Archiving Utilities::
* Networking Utilities::
* Controlling Subprocesses::
* Process ID Information::
* Environment Variables::
* Current Working Directory::
* Password Database Functions::
* Group Database Functions::
* System Information::
* Hashing Functions::
@end menu
@node Timing Utilities
@section Timing Utilities
Octave's core set of functions for manipulating time values are
patterned after the corresponding functions from the standard C library.
Several of these functions use a data structure for time that includes
the following elements:
@table @code
@item usec
Microseconds after the second (0-999999).
@item sec
Seconds after the minute (0-60). This number can be 60 to account
for leap seconds.
@item min
Minutes after the hour (0-59).
@item hour
Hours since midnight (0-23).
@item mday
Day of the month (1-31).
@item mon
Months since January (0-11).
@item year
Years since 1900.
@item wday
Days since Sunday (0-6).
@item yday
Days since January 1 (0-365).
@item isdst
Daylight saving time flag.
@item gmtoff
Seconds offset from UTC.
@item zone
Time zone.
@end table
@noindent
In the descriptions of the following functions, this structure is
referred to as a @var{tm_struct}.
@DOCSTRING(time)
@DOCSTRING(now)
@DOCSTRING(ctime)
@DOCSTRING(gmtime)
@DOCSTRING(localtime)
@DOCSTRING(mktime)
@DOCSTRING(asctime)
@DOCSTRING(strftime)
@DOCSTRING(strptime)
Most of the remaining functions described in this section are not
patterned after the standard C library. Some are available for
compatibility with @sc{matlab} and others are provided because they are
useful.
@DOCSTRING(clock)
@DOCSTRING(date)
@DOCSTRING(etime)
@DOCSTRING(cputime)
@DOCSTRING(is_leap_year)
@DOCSTRING(tic)
@DOCSTRING(toc)
@DOCSTRING(pause)
@DOCSTRING(datenum)
@DOCSTRING(datestr)
@DOCSTRING(datevec)
@DOCSTRING(addtodate)
@DOCSTRING(calendar)
@DOCSTRING(weekday)
@DOCSTRING(eomday)
@DOCSTRING(datetick)
@node Filesystem Utilities
@section Filesystem Utilities
Octave includes many utility functions for copying, moving, renaming, and
deleting files; for creating, reading, and deleting directories; for retrieving
status information on files; and for manipulating file and path names.
@DOCSTRING(movefile)
@DOCSTRING(rename)
@DOCSTRING(copyfile)
@DOCSTRING(unlink)
@DOCSTRING(link)
@DOCSTRING(symlink)
@DOCSTRING(readlink)
@DOCSTRING(mkdir)
@DOCSTRING(rmdir)
@DOCSTRING(confirm_recursive_rmdir)
@DOCSTRING(mkfifo)
@DOCSTRING(umask)
@anchor{XREFlstat}
@DOCSTRING(stat)
@DOCSTRING(S_ISBLK)
@DOCSTRING(S_ISCHR)
@DOCSTRING(S_ISDIR)
@DOCSTRING(S_ISFIFO)
@DOCSTRING(S_ISLNK)
@DOCSTRING(S_ISREG)
@DOCSTRING(S_ISSOCK)
@DOCSTRING(fileattrib)
@DOCSTRING(isfile)
@DOCSTRING(isdir)
@DOCSTRING(isfolder)
@DOCSTRING(readdir)
@DOCSTRING(glob)
@DOCSTRING(file_in_path)
@DOCSTRING(filesep)
@DOCSTRING(fileparts)
@DOCSTRING(fullfile)
@DOCSTRING(tilde_expand)
@DOCSTRING(canonicalize_file_name)
@DOCSTRING(make_absolute_filename)
@DOCSTRING(is_absolute_filename)
@DOCSTRING(is_same_file)
@DOCSTRING(is_rooted_relative_filename)
@DOCSTRING(recycle)
@node File Archiving Utilities
@section File Archiving Utilities
@DOCSTRING(bunzip2)
@DOCSTRING(gzip)
@DOCSTRING(gunzip)
@DOCSTRING(tar)
@DOCSTRING(untar)
@DOCSTRING(zip)
@DOCSTRING(unzip)
@DOCSTRING(unpack)
@DOCSTRING(bzip2)
@node Networking Utilities
@section Networking Utilities
@menu
* FTP Objects::
* WWW Access::
* Base64 and Binary Data Transmission::
@end menu
@DOCSTRING(gethostname)
@node FTP Objects
@subsection FTP Objects
Octave supports the FTP protocol through an object-oriented interface.
Use the function @code{ftp} to create an FTP object which represents the
connection. All FTP functions take an FTP object as the first argument.
@DOCSTRING(@ftp/ftp)
@DOCSTRING(@ftp/close)
@DOCSTRING(@ftp/mget)
@DOCSTRING(@ftp/mput)
@DOCSTRING(@ftp/cd)
@DOCSTRING(@ftp/dir)
@DOCSTRING(@ftp/ascii)
@DOCSTRING(@ftp/binary)
@DOCSTRING(@ftp/delete)
@DOCSTRING(@ftp/rename)
@DOCSTRING(@ftp/mkdir)
@DOCSTRING(@ftp/rmdir)
@node WWW Access
@subsection WWW Access
Octave can communicate with websites across the Internet. The @code{web}
function will launch an external web browser to interactively view a site. The
remaining functions---@code{urlread}, @code{urlwrite}, @code{webread},
@code{webwrite}---are internal Octave functions which can import or export
data to/from Octave and a website identified by a URL (Uniform Resource
Locator).
@DOCSTRING(web)
@DOCSTRING(urlread)
@DOCSTRING(urlwrite)
@DOCSTRING(webread)
@DOCSTRING(webwrite)
@DOCSTRING(weboptions)
@node Base64 and Binary Data Transmission
@subsection Base64 and Binary Data Transmission
Some transmission channels can not accept binary data. It is customary to
encode binary data in Base64 for transmission and to decode the data upon
reception.
@DOCSTRING(base64_encode)
@DOCSTRING(base64_decode)
@DOCSTRING(matlab.net.base64encode)
@DOCSTRING(matlab.net.base64decode)
@node Controlling Subprocesses
@section Controlling Subprocesses
Octave includes some high-level commands like @code{system} and
@code{popen} for starting subprocesses. If you want to run another
program to perform some task and then look at its output, you will
probably want to use these functions.
Octave also provides several very low-level Unix-like functions which
can also be used for starting subprocesses, but you should probably only
use them if you can't find any way to do what you need with the
higher-level functions.
@DOCSTRING(system)
@DOCSTRING(unix)
@DOCSTRING(dos)
@DOCSTRING(open)
@DOCSTRING(perl)
@DOCSTRING(python)
@DOCSTRING(popen)
@DOCSTRING(pclose)
@DOCSTRING(popen2)
@DOCSTRING(EXEC_PATH)
In most cases, the following functions simply decode their arguments and
make the corresponding Unix system calls. For a complete example of how
they can be used, look at the definition of the function @code{popen2}.
@DOCSTRING(fork)
@DOCSTRING(exec)
@DOCSTRING(pipe)
@DOCSTRING(dup2)
@DOCSTRING(waitpid)
@DOCSTRING(WCONTINUE)
@DOCSTRING(WCOREDUMP)
@DOCSTRING(WEXITSTATUS)
@DOCSTRING(WIFCONTINUED)
@DOCSTRING(WIFSIGNALED)
@DOCSTRING(WIFSTOPPED)
@DOCSTRING(WIFEXITED)
@DOCSTRING(WNOHANG)
@DOCSTRING(WSTOPSIG)
@DOCSTRING(WTERMSIG)
@DOCSTRING(WUNTRACED)
@DOCSTRING(fcntl)
@DOCSTRING(kill)
@DOCSTRING(SIG)
@node Process ID Information
@section Process, Group, and User IDs
@DOCSTRING(getpgrp)
@DOCSTRING(getpid)
@DOCSTRING(getppid)
@DOCSTRING(geteuid)
@DOCSTRING(getuid)
@DOCSTRING(getegid)
@DOCSTRING(getgid)
@node Environment Variables
@section Environment Variables
@DOCSTRING(getenv)
@DOCSTRING(isenv)
@DOCSTRING(setenv)
@DOCSTRING(unsetenv)
@DOCSTRING(get_home_directory)
@node Current Working Directory
@section Current Working Directory
@DOCSTRING(cd)
@DOCSTRING(ls)
@DOCSTRING(ls_command)
@DOCSTRING(dir)
@DOCSTRING(pwd)
@node Password Database Functions
@section Password Database Functions
Octave's password database functions return information in a structure
with the following fields.
@table @code
@item name
The user name.
@item passwd
The encrypted password, if available.
@item uid
The numeric user id.
@item gid
The numeric group id.
@item gecos
The GECOS field.
@item dir
The home directory.
@item shell
The initial shell.
@end table
In the descriptions of the following functions, this data structure is
referred to as a @var{pw_struct}.
@DOCSTRING(getpwent)
@DOCSTRING(getpwuid)
@DOCSTRING(getpwnam)
@DOCSTRING(setpwent)
@DOCSTRING(endpwent)
@node Group Database Functions
@section Group Database Functions
Octave's group database functions return information in a structure
with the following fields.
@table @code
@item name
The user name.
@item passwd
The encrypted password, if available.
@item gid
The numeric group id.
@item mem
The members of the group.
@end table
In the descriptions of the following functions, this data structure is
referred to as a @var{grp_struct}.
@DOCSTRING(getgrent)
@DOCSTRING(getgrgid)
@DOCSTRING(getgrnam)
@DOCSTRING(setgrent)
@DOCSTRING(endgrent)
@node System Information
@section System Information
@DOCSTRING(computer)
@DOCSTRING(uname)
@DOCSTRING(nproc)
@DOCSTRING(ispc)
@DOCSTRING(isunix)
@DOCSTRING(ismac)
@DOCSTRING(isieee)
@DOCSTRING(isdeployed)
@DOCSTRING(isstudent)
@DOCSTRING(OCTAVE_HOME)
@DOCSTRING(OCTAVE_EXEC_HOME)
@DOCSTRING(matlabroot)
@DOCSTRING(user_config_dir)
@DOCSTRING(user_data_dir)
@DOCSTRING(OCTAVE_VERSION)
@DOCSTRING(version)
@DOCSTRING(ver)
@DOCSTRING(compare_versions)
@DOCSTRING(verLessThan)
@DOCSTRING(license)
@DOCSTRING(memory)
@DOCSTRING(getrusage)
@DOCSTRING(winqueryreg)
@node Hashing Functions
@section Hashing Functions
It is often necessary to find if two strings or files are identical.
This might be done by comparing them character by character and looking
for differences. However, this can be slow, and so comparing a hash of
the string or file can be a rapid way of finding if the files differ.
Another use of the hashing function is to check for file integrity. The
user can check the hash of the file against a known value and find if
the file they have is the same as the one that the original hash was
produced with.
Octave supplies the @code{hash} function to calculate hash values of
strings and files, the latter in combination with the @code{fileread}
function. The @code{hash} function supports many commonly used hash
methods.
@DOCSTRING(hash)
|