We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ff174e commit 88347b7Copy full SHA for 88347b7
npcsh/shell_helpers.py
@@ -1659,11 +1659,11 @@ def parse_piped_command(current_command):
1659
1660
try:
1661
command_parts = shlex.split(current_command)
1662
- print(command_parts)
+ # print(command_parts)
1663
except ValueError:
1664
# Fallback if quote parsing fails
1665
command_parts = current_command.split()
1666
1667
# Base command is the first part
1668
base_command = command_parts[0]
1669
0 commit comments