dotfiles/dot_config/ipython/profile_default/startup/magic_ps.py
2025-09-27 12:51:25 +01:00

21 lines
618 B
Python

from IPython.core.magic import register_line_magic
@register_line_magic
def ps(cmd):
output = get_ipython().getoutput(f"pwsh -NoProfile -Command {cmd}")
# If no variable is assigned to the output, print it
if get_ipython().last_execution_result is None:
print("\n".join(output))
else:
return "\n".join(output)
@register_line_magic
def nu(cmd):
output = get_ipython().getoutput(f"nu -c {cmd}")
# If no variable is assigned to the output, print it
if get_ipython().last_execution_result is None:
print("\n".join(output))
else:
return "\n".join(output)