1

我刚买了一台mac,由于我更习惯windows cmd而不是linux和mac中的bash,所以我正在为此苦苦挣扎。我正在尝试使用 bash 更改输出路径以使某些应用程序可移植。在cmd中,它是这样的

Set APPDATA=%CD%/certainfolderforportablestuff

这在 bash 中如何工作?只需保留 Appdata 文件夹名称即可。提前致谢!

4

1 回答 1

3
APPDATA=%CD%/certainfolderforportablestuff

in bash should be

APPDATA=$PWD/certainfolderforportablestuff

And since you're just starting with bash I suggest that you place variables inside double quotes by default:

APPDATA="$PWD/certainfolderforportablestuff"
于 2013-08-14T10:50:06.833 回答