名称:ls
业主:ls -ld <filename> | cut -f3 -d' '
例如: root
修改日期:ls -ld <filename> | awk '{print $6" "$7}'
例如: 2012-03-02 06:56
(stat <filename>
用于访问和更改的日期。)
类型:file <filename>
例如: /lib/libiw.so.30: ELF 32-bit LSB shared object, Intel 80386 (...)
尺寸:ls -hld <filename> | cut -f5 -d' '
例如: 34K
标签:不适用
公司名称:apt-cache show $(dpkg -S <filename> | cut -f1 -d:) | grep Origin
例如: Origin: Ubuntu
(在基于.rpm的系统上,此信息可以在中找到rpm -q -i -f <filename>
)
版权:cat /usr/share/doc/$(dpkg -S <filename> | cut -f1 -d:)/copyright 2>/dev/null || echo 'No copyright information'
例如: (...) Copyright: Commercial (...)
(在基于.rpm的系统上,此信息可以在中找到rpm -q -i -f <filename>
)
说明:apt-cache show $(dpkg -S <filename> | cut -f1 -d:) | fgrep 'Description' | fgrep -v Description-md5
例如: Description-en: Filesystem in Userspace (library)
(在基于.rpm的系统上,此信息可以在中找到rpm -q -i -f <filename>
)
详细说明:apt-cache show $(dpkg -S <filename> | cut -f1 -d:) | egrep -v '^[^ ]'
例如: GNU findutils provides utilities to find files meeting specified
criteria and perform various actions on the files which are found.
This package contains 'find' and 'xargs'; however, 'locate' has
been split off into a separate package.
(在基于.rpm的系统上,此信息可以在中找到rpm -q -i -f <filename>
)
nm file
。至于许可证/版权和说明-您可以从软件包管理器中了解(我不知道如何在ubuntu中进行操作)。