需要使用flare文件和flasm,这些文件和权限正确。为什么只能运行一个而不运行另一个?

-rwxr-xr-x  1 daniela.morais sudo    64808 Mar 19 13:54 flare*
-rwxr-xr-x  1 daniela.morais sudo   108525 Mar 19 13:48 flasm*
daniela.morais@tusk:/usr/local/bin$ flare

Flare 0.6 build Jun 11 2007

Copyright (c) 2003-2005 Igor Kogan
All rights reserved. See LICENSE.TXT for terms of use.

Usage: flare filename.swf
Decompiled ActionScript code is stored in filename.flr.
daniela.morais@tusk:/usr/local/bin$ flasm
bash: /usr/local/bin/flasm: No such file or directory


耀斑:http://www.nowrap.de/flare.html耀斑:http://www.nowrap.de/flasm.html

最佳答案

这意味着flasm不在您调用它的目录中,请使用以下命令检查其位置:

find / -name 'flasm'


或使用定位和位置呼叫

09-27 08:11