在 Windows 命令提示符下,将两者都cd ..
移至cd..
父目录。在 Linux bash(MINGW 等)上,前者有效,但后者给出错误:cd..: command not found
.
也许天真,但是否有 Linux 设置或 bash 可以配置为理解cd..
(并像操作一样cd ..
)?
在 Windows 命令提示符下,将两者都cd ..
移至cd..
父目录。在 Linux bash(MINGW 等)上,前者有效,但后者给出错误:cd..: command not found
.
也许天真,但是否有 Linux 设置或 bash 可以配置为理解cd..
(并像操作一样cd ..
)?
我有一个程序
#include<iostream>
#include<windows.h>
using namespace std;
int main()
{
cout<<"Hello World!! This Program Is made in win32 API\n";
return 0;
}
但是当我编译这个程序时
x86_64-w64-mingw32-g++ Hello.cpp -o hello64.exe
并运行它
wine64 hello64.exe
我收到 2 个错误
0009:err:module:import_dll Library libstdc++-6.dll (which is needed by L"Z:\\home\\garvit\\C++\\hello64.exe") not found
0009:err:module:LdrInitializeThunk Importing dlls for L"Z:\\home\\garvit\\C++\\hello64.exe" failed, status c0000135
我正在使用 Ubuntu 20.04,而且我是 Linux 新手。