在linux中,可以通过命令atom来运行atom编辑器吗?我试过了
atom
Command 'atom' is available in '/snap/bin/atom'
The command could not be located because '/snap/bin' is not included in the PATH environment variable.
atom: command not found
我们总是可以通过使用alias命令来查看alias值。
wolf@linux:~$ alias al='grep "$1" file.txt'
wolf@linux:~$ alias al
alias al='grep "$1" file.txt'
wolf@linux:~$
不幸的是,grep不能使用别名。不知道是什么问题。如果你知道问题和解决办法,请告诉我。
wolf@linux:~$ al
random text
abc def jkl
random text
abc ghi jkl
random text
wolf@li
我正在为一个JavaScript项目切换到VSCode WSL远程模式。Chrome Debugger扩展总是在Linux中查找Google Chrome。这是正确的行为吗? 我有一个Chrome for Linux安装在WSL中,它可以在X服务器上运行。问题是断点不起作用。 我试着在WSL中移除Chrome,然后这个扩展就会抛出Can't find Chrome - install it or set the "runtimeExecutable" field in the launch config。 我应该将"runtimeExecutable“设置为c
~$ bash --version
GNU bash, version 5.1.12(1)-release (x86_64-pc-linux-gnu)
~$ alias bab=python
~$ $(echo bab)
bash: bab: command not found
我希望bab会变成"python",但看起来并非如此。
~$ $(echo alias)
alias bab='python'
alias ls='ls --color=auto'
~$ bab
Python 3.10.1 (main, Dec 11 2021, 17:2