ChinaUnix.net
相关文章推荐:

unix ls

-a Lists all entries, including those that begin with a dot (.), which are normally not listed. -l Lists in long format, giving mode, ACL indication, number of links, owner, group, size in bytes, and time of last modification for each file (see above). If the file is a special file, the size field instead con- tains the major and minor device numbe...

by meteorm - Linux文档专区 - 2007-09-20 16:39:39 阅读(911) 回复(0)

相关讨论

ls -l 等无法列出内容 ls 可以。hp-unix 是改了哪个参数 是不是有参数改了。是哪一个。兄弟,急啊。

by netxay - HP-UX - 2005-04-10 16:58:55 阅读(1851) 回复(7)

ls -l 等无法列出内容 ls 可以。hp-unix 是改了哪个参数 是不是有参数改了。是哪一个。兄弟,急啊。

by netxay - HP-UX - 2005-04-10 16:58:55 阅读(3097) 回复(7)

import java.io.*; public class Execunix { public static void main(String[] args) throws IOException { for (int i=0; i Runtime.getRuntime().exec("ls -l /tmp/file? > /tmp/data_collect"); Runtime.getRuntime().exec("rm -f /tmp/file?"); } } 本文来自Chinaunix博客,如果查看原文请点:http://blog.chinaunix.net/u2/75083/showart_1110525.html

by UnixACE - Linux文档专区 - 2008-08-06 11:53:08 阅读(512) 回复(0)

本帖最后由 ganybo 于 2011-01-20 11:44 编辑 用ftp登陆unix系统后用di、ls查看文件,文件和目录无法显示出来,pub下面是有目录和文件的。但用root登陆就可以。过程如下: #ftp 110.134.30.136 Connected to 110.134.30.136. 220- 220 scosysv FTP server (Version wu-2.6.2(1) Thu Aug 3 02:08:20 EDT 2006) ready. Name (10.34.0.36:root): ftp 331 Guest login ok, send your complete e-mail address as password. Passwo...

by ganybo - 服务器应用 - 2011-03-02 00:02:40 阅读(3572) 回复(3)

文件操作中一直迷茫的就是跨越目录操作文件,非常想知道ls命令和dir命令的实现方法,求教高手指教,在此先谢过。。。。

by ngzyl - C/C++ - 2006-11-27 10:25:55 阅读(6266) 回复(39)

#ls 200 PORT command successful. 150 ASCII data connection for /bin/ls (192.168.0.136,4267) (0 bytes). 226 ASCII Transfer complete. 显示以上内容

by aszyy - Solaris - 2005-02-04 08:38:04 阅读(2517) 回复(3)

#ls\r\n200 PORT command successful.\r\n150 ASCII data connection for /bin/ls (192.168.0.136,4267) (0 bytes).\r\n226 ASCII Transfer complete.\r\n显示以上内容

by aszyy - Solaris - 2005-02-04 08:38:04 阅读(3378) 回复(3)

不能用rsh的情况下,怎么写一个shell能telnet到一台unix主机上执行ls命令?

by jobparadise - Shell - 2004-07-22 09:03:51 阅读(2214) 回复(8)
by iotigod - 其他UNIX - 2003-02-12 12:42:31 阅读(2034) 回复(3)

/* * 对UNUX V7 ls命令原代码的注释。 * 位置:unix V7/usr/src/cmd/ls.c */ #include #include #include #include #define NFILES 1024 FILE *pwdf, *dirf; char stdbuf[BUFSIZ]; /* struc lbuf 封装了对ls有用的struct stat */ struct lbuf { union { char lname[15]; char *namep; //文件名 } ln; char ltype; //文件类型 short lnum; //索引结点号 short lflags; //权限位 short lnl; //链接数...

by gameboytxt - Linux文档专区 - 2006-04-12 21:02:14 阅读(998) 回复(0)