Difference between revisions of "/bin/"

From GhostBSD Wiki
Jump to: navigation, search
Line 13: Line 13:
 
|/bin/chflags|| The [https://www.freebsd.org/cgi/man.cgi?query=chflags&apropos=0&sektion=0&manpath=FreeBSD+7.2-RELEASE&arch=default&format=html chflags] utility modifies the file flags of the listed files as specified by the flags operand.
 
|/bin/chflags|| The [https://www.freebsd.org/cgi/man.cgi?query=chflags&apropos=0&sektion=0&manpath=FreeBSD+7.2-RELEASE&arch=default&format=html chflags] utility modifies the file flags of the listed files as specified by the flags operand.
 
|-
 
|-
|/bin/chio||
+
|/bin/chio||The [https://www.freebsd.org/cgi/man.cgi?query=chio&apropos=0&sektion=0&manpath=FreeBSD+7.2-RELEASE&arch=default&format=html chio] utility is used to control the operation of medium changers, such as those found in tape and optical disk jukeboxes.
 
|-
 
|-
|/bin/chmod||
+
|/bin/chmod||The [https://www.freebsd.org/cgi/man.cgi?query=chmod&apropos=0&sektion=0&manpath=FreeBSD+7.2-RELEASE&arch=default&format=html chmod] utility modifies the file mode bits of the listed files as specified by the ''mode'' operand.
 
|-
 
|-
|/bin/cp||
+
|/bin/cp||In the first synopsis form, the [https://www.freebsd.org/cgi/man.cgi?query=cp&apropos=0&sektion=0&manpath=FreeBSD+7.2-RELEASE&arch=default&format=html cp] utility copies the contents of the source_file to the target_file.  In the second synopsis form, the contents of each named source_file is copied to the destination target_directory. The names of the files themselves are not changed.  If cp detects an attempt to copy a file to itself, the copy will fail.
 
|-
 
|-
|/bin/csh||
+
|/bin/csh||[https://www.freebsd.org/cgi/man.cgi?query=csh&sektion=1&apropos=0&manpath=FreeBSD+7.2-RELEASE C shell]
 
|-
 
|-
|/bin/date||
+
|/bin/date||[https://www.freebsd.org/cgi/man.cgi?query=date&apropos=0&sektion=0&manpath=FreeBSD+7.2-RELEASE&arch=default&format=html display or set date and time]
 
|-
 
|-
|/bin/dd||
+
|/bin/dd||The [https://www.freebsd.org/cgi/man.cgi?query=dd&apropos=0&sektion=0&manpath=FreeBSD+7.2-RELEASE&arch=default&format=html dd] utility copies the standard input to the standard output.  Input data is read and written in 512-byte blocks.  If input reads are short, input from multiple reads are aggregated to form the output block. When finished, dd displays the number of complete and partial input and output blocks and truncated input records to the standard error output.
 +
 
 
|-
 
|-
|/bin/df||
+
|/bin/df||The [https://www.freebsd.org/cgi/man.cgi?query=df&apropos=0&sektion=0&manpath=FreeBSD+7.2-RELEASE&arch=default&format=html df] utility displays statistics about the amount of free disk space on the specified file system or on the file system of which file is a part. Values are displayed in 512-byte per block counts.
 
|-
 
|-
|/bin/domainname||
+
|/bin/domainname||The [https://www.freebsd.org/cgi/man.cgi?query=domainname&apropos=0&sektion=0&manpath=FreeBSD+7.2-RELEASE&arch=default&format=html domainname] utility prints the name of the current YP/NIS domain.  The      super-user can set the domain name by supplying an argument; this is usually done in the network initialization script /etc/rc.network, normally run at boot time.
 +
 
 
|-
 
|-
|/bin/echo||
+
|/bin/echo|| The [https://www.freebsd.org/cgi/man.cgi?query=echo&apropos=0&sektion=0&manpath=FreeBSD+7.2-RELEASE&arch=default&format=html echo] utility writes any specified operands, separated by single blank (` ') characters and followed by a newline (`\n') character, to the standard output.
 
|-
 
|-
|/bin/ed||
+
|/bin/ed||The [https://www.freebsd.org/cgi/man.cgi?query=ed&apropos=0&sektion=0&manpath=FreeBSD+7.2-RELEASE&arch=default&format=html ed] utility is a line-oriented text editor.
 
|-
 
|-
|/bin/expr||
+
|/bin/expr||The [https://www.freebsd.org/cgi/man.cgi?query=expr&apropos=0&sektion=0&manpath=FreeBSD+7.2-RELEASE&arch=default&format=html expr] utility evaluates expression and writes the result on standard  output
 
|-
 
|-
 
|/bin/freebsd-version||
 
|/bin/freebsd-version||

Revision as of 12:33, 9 February 2020

Welcome to Icon Disti GhostBSD.png /bin/.
This page is in maintenance!
Please do not change this page without to contact the author or use Discussion!
Utility Description
/bin/[ The test utility evaluates the expression and, if it evaluates to true, returns a zero (true) exit status; otherwise it returns 1 (false). If there is no expression, test also returns 1 (false).
/bin/cat The cat utility reads files sequentially, writing them to the standard output. The file operands are processed in command-line order. If file is a single dash (`-') or absent, cat reads from the standard input. If file is a UNIX domain socket, cat connects to it and then reads it until EOF. This complements the UNIX domain binding capability available in inetd(8).
/bin/chflags The chflags utility modifies the file flags of the listed files as specified by the flags operand.
/bin/chio The chio utility is used to control the operation of medium changers, such as those found in tape and optical disk jukeboxes.
/bin/chmod The chmod utility modifies the file mode bits of the listed files as specified by the mode operand.
/bin/cp In the first synopsis form, the cp utility copies the contents of the source_file to the target_file. In the second synopsis form, the contents of each named source_file is copied to the destination target_directory. The names of the files themselves are not changed. If cp detects an attempt to copy a file to itself, the copy will fail.
/bin/csh C shell
/bin/date display or set date and time
/bin/dd The dd utility copies the standard input to the standard output. Input data is read and written in 512-byte blocks. If input reads are short, input from multiple reads are aggregated to form the output block. When finished, dd displays the number of complete and partial input and output blocks and truncated input records to the standard error output.
/bin/df The df utility displays statistics about the amount of free disk space on the specified file system or on the file system of which file is a part. Values are displayed in 512-byte per block counts.
/bin/domainname The domainname utility prints the name of the current YP/NIS domain. The super-user can set the domain name by supplying an argument; this is usually done in the network initialization script /etc/rc.network, normally run at boot time.
/bin/echo The echo utility writes any specified operands, separated by single blank (` ') characters and followed by a newline (`\n') character, to the standard output.
/bin/ed The ed utility is a line-oriented text editor.
/bin/expr The expr utility evaluates expression and writes the result on standard output
/bin/freebsd-version
/bin/getfacl
/bin/hostname
/bin/kenv
/bin/kill
/bin/link
/bin/ln
/bin/ls
/bin/mkdir
/bin/mv
/bin/pax
/bin/pgrep
/bin/pkill
/bin/ps
/bin/pwait
/bin/pwd
/bin/rc-status
/bin/realpath
/bin/red
/bin/rm
/bin/rmail
/bin/rmdir
/bin/setfacl
/bin/sh
/bin/sleep
/bin/stty
/bin/sync
/bin/tcsh
/bin/test
/bin/unlink
/bin/uuidgen
Back to Icon Disti GhostBSD.pngDirectory Structure