当前位置: 技术问答>linux和unix
为什么$od在我的机子上运行不同阿??
来源: 互联网 发布时间:2016-05-16
本文导语: 其内容如下: fuxiangxu@ubuntu:~$ od -c . od: .: read error: Is a directory 0000000 是什么原因阿?? 我应该怎么该才能让它显示当前目录的内容阿???? | 不能接受 directory 吧 Usage: od [OPTIO...
其内容如下:
fuxiangxu@ubuntu:~$ od -c .
od: .: read error: Is a directory
0000000
是什么原因阿?? 我应该怎么该才能让它显示当前目录的内容阿????
fuxiangxu@ubuntu:~$ od -c .
od: .: read error: Is a directory
0000000
是什么原因阿?? 我应该怎么该才能让它显示当前目录的内容阿????
|
不能接受 directory 吧
Usage: od [OPTION]... [FILE]...
or: od [-abcdfilosx]... [FILE] [[+]OFFSET[.][b]]
or: od --traditional [OPTION]... [FILE] [[+]OFFSET[.][b] [+][LABEL][.][b]]
Write an unambiguous representation, octal bytes by default,
of FILE to standard output. With more than one FILE argument,
concatenate them in the listed order to form the input.
With no FILE, or when FILE is -, read standard input.
|
try this
cd $OLDPWD
|
如果是 home 目录的话
cd ~
cd $HOME
|
cd -