3
다른 디렉토리에 객체를 추출하는 옵션이 있습니까? 아래의 tmp 파일을 추출하는 방법은 무엇입니까?다른 디렉토리에 x filename.a를 저장하는 방법
[test]# ls -l
total 1828
-rw-r--r-- 1 root root 1859628 Aug 24 02:10 libclsr11.a
drwxr-xr-x 2 root root 4096 Aug 24 02:12 tmp
[test]# ar x libclsr11.a
[test]# ls -l
total 3760
-rw-r--r-- 1 root root 157304 Aug 24 02:13 clsrcact.o
-rw-r--r-- 1 root root 19304 Aug 24 02:13 clsrcclu.o
-rw-r--r-- 1 root root 55696 Aug 24 02:13 clsrccss.o
..
drwxr-xr-x 2 root root 4096 Aug 24 02:12 tmp
[test]#
Striezel, 고맙습니다. 이것은 나를 위해 할 것입니다. – Jon