Skip to main content
edited tags
Link
Kusalananda
  • 356.1k
  • 42
  • 737
  • 1.1k
added 10 characters in body
Source Link
Marcus Müller
  • 52.7k
  • 4
  • 80
  • 123

I'm encountering an issue where I'm unable to execute multiple alias commands at the same time in my shell environment. For example, when I try to run two alias commands together, only one seems to execute, or I get an error.

I've tried defining the aliases separately and then combining them in a single command using &&&& and ;;, but it still doesn't work as expected. Here's a simplified version of what I'm trying:

alias1 alias2

alias1 <command> alias2 

I'm encountering an issue where I'm unable to execute multiple alias commands at the same time in my shell environment. For example, when I try to run two alias commands together, only one seems to execute, or I get an error.

I've tried defining the aliases separately and then combining them in a single command using && and ;, but it still doesn't work as expected. Here's a simplified version of what I'm trying:

alias1 alias2

I'm encountering an issue where I'm unable to execute multiple alias commands at the same time in my shell environment. For example, when I try to run two alias commands together, only one seems to execute, or I get an error.

I've tried defining the aliases separately and then combining them in a single command using && and ;, but it still doesn't work as expected. Here's a simplified version of what I'm trying:

alias1 <command> alias2 
Source Link

Unable to Execute Multiple Alias Commands Simultaneously

I'm encountering an issue where I'm unable to execute multiple alias commands at the same time in my shell environment. For example, when I try to run two alias commands together, only one seems to execute, or I get an error.

I've tried defining the aliases separately and then combining them in a single command using && and ;, but it still doesn't work as expected. Here's a simplified version of what I'm trying:

alias1 alias2