Available tool (embedded commands) in ops
:
This is the multi-page printable view of this section. Click here to print.
Tools
- 1: base64
- 2: datefmt
- 3: echoif
- 4: echoifempty
- 5: echoifexists
- 6: empty
- 7: executable
- 8: extract
- 9: filetype
- 10: needupdate
- 11: opspath
- 12: random
- 13: remove
- 14: rename
- 15: retry
- 16: sh
- 17: urlenc
- 18: validate
1 - base64
base64
utility acts as a base64 decoder when passed the --decode
(or -d) flag and as a base64 encoder
otherwise. As a decoder it only accepts raw base64 input and as an encoder it does not produce the framing
lines.
Options
-h, --help Display this help message
-e, --encode <string> Encode a string to base64
-d, --decode <string> Decode a base64 string
Examples
Encoding
This will output:
Decoding
This will output:
2 - datefmt
Print date with different formats. If no time stamp or date strings are given, uses current time
Options
-h, --help print this help info
-t, --timestamp unix timestamp to format (default: current time)
-s, --str date string to format
--if input format to use with input date string (via --str)
-f, --of output format to use (default: UnixDate)
Possible formats (they follows the standard naming of go time formats, with the addition of ‘Millisecond’ and ‘ms’):
- Layout
- ANSIC
- UnixDate
- RubyDate
- RFC822
- RFC822Z
- RFC850
- RFC1123
- RFC1123Z
- RFC3339
- RFC3339Nano
- Kitchen
- Stamp
- StampMilli
- StampMicro
- StampNano
- DateTime
- DateOnly
- TimeOnly
- Milliseconds
- ms
Example
3 - echoif
echoif
is a utility that echoes the value of <a>
if the exit code of the previous command is 0,
echoes the value of <b>
otherwise
Example
or
4 - echoifempty
echoifempty
is a utility that echoes the value of <a>
if <str>
is empty, echoes the value of <b>
otherwise.
Example
5 - echoifexists
echoifexists is a utility that echoes the value of <a>
if <file>
exists, echoes the value of <b>
otherwise.
Example
6 - empty
empty
creates an empty file - returns error if it already exists.
7 - executable
executable
make a file executable: on Unix-like systems it will do a chmod u+x.
On Windows systems it will rename the file to .exe if needed.
Example
8 - extract
Extract one single file from a .zip .tar, .tgz, .tar.gz, tar.bz2, tar.gz.
Example
Extract file named single.pdf
from archive.zip
archive.
9 - filetype
Show extension and MIME type of a file. Supported types are documented here
Options
-h shows this help
-e show file standard extension
-m show file mime type
Examples
File Mime type
This will output the ops executable type:
application/x-mach-binary
or application/x-executable
10 - needupdate
Check if a semver version A > semver version B. Exits with 0 if greater, 1 otherwise.
Options
-h, --help print this help info
Examples
Update is needed
This will output:
Update is not needed
This will output:
11 - opspath
Join a relative path to the path from where ops
was executed.
This command is useful when creating custom tasks ( e.g. an ops plugin).
Options:
-h, --help print this help info
Examples
You are executing in directory /home/user/my/custom/dir
This will output:
12 - random
Generate random numbers, strings and uuids
Options
-h, --help shows this help
-u, --uuid generates a random uuid v4
--int <max> [min] generates a random non-negative integer between min and max (default min=0)
--str <len> [<characters>] generates an alphanumeric string of length <len> from the set of <characters> provided (default <characters>=a-zA-Z0-9)
Examples
Random uuid v4:
This will output something like:
Random integer between max and min
This will output something like:
13 - remove
Remove a file
14 - rename
Rename a file
15 - retry
Options
Example
Retry two times to get the ops action list
16 - sh
sh
is the mvdan shell using the ops environment.
Without args, starts an interactive shell. Otherwise execute the script specified on command line.
17 - urlenc
urlencode parameters using the default & separator (or a specific one using -s flag). Optionally, encode the values retrieving them from environment variables.
Options
-e Encode parameter values from environment variables
-h Show help
-s string Separator for concatenating the parameters (default "&")
Examples
This will output:
18 - validate
Check if a value is valid according to the given constraints. If -e is specified, the value is retrieved from the environment variable with the given name.
Options
-e Retrieve value from the environment variable with the given name.
-h Print this help message.
-m Check if the value is a valid email address.
-n Check if the value is a number.
-r string Check if the value matches the given regular expression.
Examples
Validate with regexp
Validate email
ops -validate -m example@gmail.com