cmdfile runs annoying commands automatically.
Project description
cmdfile
cmdfile runs annoying commands automatically.
Docs
Installation
Run python -m pip install cmdfile
in your terminal.
Usage
You can use cmdfile as a command, or as a module.
Example for using as a command:
> python -m cmdfile build
Hello
You can specify cmdfile filename with the following: python -m cmdfile tablename filename
(By default, if you simply run python -m cmdfile
, it will run the main
table of the cmdfile
file)
This will run the hello
table of the cmdfile, note that the cmdfile must be in the directory you're running the script from, example cmdfile:
(hello)
echo Hello
python -m cmdfile check temp
is the equivalent of this:
import cmdfile
cmdfile.run("check", filename="temp")
Variables
You can declare variables in the cmdfile using:
# You can declare variables outside of tables
# some_variable = "I'm not in any table!"
(table)
variable = "some text"
echo {{variable}}
some text
You can also declare variables through code like this:
import cmdfile
cmdfile.add_var("variable", "some text")
cmdfile.run("table")
And then this will also output some text
:
(table)
echo {{variable}}
Changing the shell
You can change what shell to use by changing the shell
variable:
shell = "powershell.exe -c"
[main]
echo 'Hello' # Executes "powershell.exe -c echo 'Hello'"
Requirements
Requirements are tables that run before the main table, example:
[main] a_requirement another_requirement
# This will call a_requirement, another_requirement and main, respectively
[a_requirement]
# ...
[another_requirement]
# ...
1.2.2 Bugfix
- Fixed cmdfile giving error when directly calling without args
Changelog for 1.2.0
- Added "requirements", this calls other tables before running the current table, example:
[main] a_requirement another_requirement
# This will call a_requirement, another_requirement and main, respectively
[a_requirement]
# ...
[another_requirement]
# ...
- You can now select the shell to use to run commands like this:
shell = "powershell.exe -c"
[main]
echo 'Hello' # Executes "powershell.exe -c echo 'Hello'"
- Changed variable usage from
{_varname_}
to{{varname}}
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file cmdfile-1.2.2.tar.gz
.
File metadata
- Download URL: cmdfile-1.2.2.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a2bdefdde9028bb54e6e1ccc25fb37d7df41b11e0bacc657474ddf443718136a |
|
MD5 | 97806b2aefb5007cc81f86a1688197d2 |
|
BLAKE2b-256 | cab3342547fa49fef2c2f258cdaeb8d787b0de452deb9bfae45dae64e68feec7 |
File details
Details for the file cmdfile-1.2.2-py3-none-any.whl
.
File metadata
- Download URL: cmdfile-1.2.2-py3-none-any.whl
- Upload date:
- Size: 4.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 491416287f61c24c075bb9b75425f40f5f9d80caceead00b910936b9e1955b87 |
|
MD5 | 1092a66763d4f4abb00daccca02009ef |
|
BLAKE2b-256 | 30857df19eee450243ab09d4fec85c10ead13977b8696e75e5faa05b496ef50c |