Ubuntu로 zip 파일을 두 번 클릭하여 엽니다!
프레젠테이션
환경
Ubuntu 16.04 LTS
단계
Ubuntu 16.04 LTS
단계
일.데스크톱 파일 만들기 /usr/share/applications/
에서 다음 파일을 만듭니다.파일 이름이 extract-here.desktop
입니까?
extract-here.desktop[Desktop Entry]
Name=extract-here
Exec=/usr/bin/extract-here.sh %U
Terminal=false
Type=Application
MimeType=application/zip;
2. xdg-mine 명령 실행 $ xdg-mime default extract-here.desktop "application/zip"
또 다시 시작해도 이 설정은 계승된다.
3. 케이스 스크립트 만들기
다음 셸 스크립트를 /usr/bin/
이하로 만듭니다.
extract-here.sh#!/bin/bash
/usr/bin/file-roller -h "$1";
file-roller -h
은'여기서 전개'와 같다.
$1을 큰따옴표로 묶으면 압축 파일 이름에 공백이 있어도 됩니다.
tar.gz도 확장 가능
우선, 타.gz의mimetype를 보십시오.mimetype hoge.tar.gz
그러면 다음과 같은 결과를 얻을 수 있을 것 같습니다.hoge.tar.gz: application/x-compressed-tar
보아하니gz의mimetype는 application/x-compressed-tar
인 것 같습니다.
mimetype를 알면서도 xdg-mime 명령을 실행하세요.xdg-mime default extract-here.desktop "application/x-compressed-tar"
이렇게, 타.gz 파일도 두 번 클릭하여 동결해제할 수 있습니다.편하네!
참고 자료
Ubuntu에서 zip 파일을 두 번 클릭하는 방법
Use custom command to open files
bash get the parent directory of current directory
후기
압축 파일을 아주 쉽게 전개할 수 있기 때문에 매우 편리하다.
Reference
이 문제에 관하여(Ubuntu로 zip 파일을 두 번 클릭하여 엽니다!), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/v97ug/items/2e3a8f1cb0bdf0589116
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
[Desktop Entry]
Name=extract-here
Exec=/usr/bin/extract-here.sh %U
Terminal=false
Type=Application
MimeType=application/zip;
$ xdg-mime default extract-here.desktop "application/zip"
또 다시 시작해도 이 설정은 계승된다.3. 케이스 스크립트 만들기
다음 셸 스크립트를 /usr/bin/
이하로 만듭니다.
extract-here.sh#!/bin/bash
/usr/bin/file-roller -h "$1";
file-roller -h
은'여기서 전개'와 같다.
$1을 큰따옴표로 묶으면 압축 파일 이름에 공백이 있어도 됩니다.
tar.gz도 확장 가능
우선, 타.gz의mimetype를 보십시오.mimetype hoge.tar.gz
그러면 다음과 같은 결과를 얻을 수 있을 것 같습니다.hoge.tar.gz: application/x-compressed-tar
보아하니gz의mimetype는 application/x-compressed-tar
인 것 같습니다.
mimetype를 알면서도 xdg-mime 명령을 실행하세요.xdg-mime default extract-here.desktop "application/x-compressed-tar"
이렇게, 타.gz 파일도 두 번 클릭하여 동결해제할 수 있습니다.편하네!
참고 자료
Ubuntu에서 zip 파일을 두 번 클릭하는 방법
Use custom command to open files
bash get the parent directory of current directory
후기
압축 파일을 아주 쉽게 전개할 수 있기 때문에 매우 편리하다.
Reference
이 문제에 관하여(Ubuntu로 zip 파일을 두 번 클릭하여 엽니다!), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/v97ug/items/2e3a8f1cb0bdf0589116
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
#!/bin/bash
/usr/bin/file-roller -h "$1";
우선, 타.gz의mimetype를 보십시오.
mimetype hoge.tar.gz
그러면 다음과 같은 결과를 얻을 수 있을 것 같습니다.hoge.tar.gz: application/x-compressed-tar
보아하니gz의mimetype는 application/x-compressed-tar
인 것 같습니다.mimetype를 알면서도 xdg-mime 명령을 실행하세요.
xdg-mime default extract-here.desktop "application/x-compressed-tar"
이렇게, 타.gz 파일도 두 번 클릭하여 동결해제할 수 있습니다.편하네!참고 자료
Ubuntu에서 zip 파일을 두 번 클릭하는 방법
Use custom command to open files
bash get the parent directory of current directory
후기
압축 파일을 아주 쉽게 전개할 수 있기 때문에 매우 편리하다.
Reference
이 문제에 관하여(Ubuntu로 zip 파일을 두 번 클릭하여 엽니다!), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/v97ug/items/2e3a8f1cb0bdf0589116
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
압축 파일을 아주 쉽게 전개할 수 있기 때문에 매우 편리하다.
Reference
이 문제에 관하여(Ubuntu로 zip 파일을 두 번 클릭하여 엽니다!), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/v97ug/items/2e3a8f1cb0bdf0589116텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)