답변:
Delete Immediately.service
~/Library/Services
. 폴더를 만들어야 할 수도 있습니다.killall Finder;
아니요-바로 가기는 없지만 Finder를 확장하여 원하는대로 수용 할 수 있도록 유연하게 구부릴 수있는 서비스 메뉴가 있습니다.
스크립트를 호출 rm
하거나 srm
기본 설정의 바로 가기 키를 서비스에 바인딩 하는 서비스를 정의하려고합니다 .
Automator의 기본 제공 도움말은 서비스 학습 학습을 지원할 수 있습니다.
또한 자동화 전문가 인 Sal Soghoian 이 만든 http://www.macosxautomation.com/ 사이트도 귀중합니다.
@bmike가 제안한 것과 비슷한 AppleScript를 발견했습니다. Jolly Jimmy 님 이 포럼 게시물에 올렸습니다 :
tell application "Finder"
set theSelection to selection
if theSelection is {} then
beep
activate current application
display alert "No files are selected for deletion." message "Select one or more files to delete." as warning
else
activate current application
display alert "Delete item(s)?" message "The selected item(s) will be deleted immediately. Are you sure you want to continue?" buttons {"OK", "Cancel"} as warning
set buttonpressed to button returned of result
if the buttonpressed is "OK" then
repeat with i from 1 to (count theSelection)
set item1 to (the quoted form of POSIX path of (item i of the theSelection as alias))
set deleteit to "rm -rf " & item1 & ""
try
do shell script deleteit
on error
do shell script deleteit with administrator privileges
end try
end repeat
end if
end if
end tell
이 스크립트를 서비스 메뉴에 추가하면 마우스 오른쪽 버튼을 클릭하여 삭제할 수 있습니다.
당신은 할 수 Command- Delete다음 휴지통과로 이동 Command- Shift- Delete휴지통 비우기
Backspace
대신 키 가 Del
있습니다.
OP는 Lion에 관한 것이지만 최신 버전에서는 다음을 눌러이를 수행 할 수 있습니다. ⌘ Command⌥ Option⌫ Delete
시에라에서 테스트
나는 쓰레기없는 것을 좋아한다 . 그것은의 앱 스토어에 (무료하지 않음).
도크와 도구 모음에 사용할 수있는 아이콘이 있지만, 가장 좋은 점은 Finder에 단추를 추가하여 끌어 놓을 수 있다는 것입니다.
완전한 GUI 답변은 아니지만 Finder + Terminal + Drag'n'drop 접근 방식을 사용하면 터미널 창이 열려 있고 겹치지 않는 Finder 창이있는 경우 절차를 훨씬 쉽게 만들 수 있습니다.
rm -rf
터미널에 입력 하십시오 (후행 공백 포함).힌트 : Finder 에서 현재 폴더 를 제거하려면 Finder의 제목 표시 줄에서 파란색 아이콘 을 드래그하십시오 . 텍스트 편집기 창이나 현재 경로 또는 파일 이름을 표시하는 일반 제목 표시 줄이있는 OSX 앱에서도 작동합니다.
힌트 2 : 터미널 창과 겹치는 창에서 파일 / 폴더를 드래그하는 경우, 파일을 도크의 터미널 아이콘으로 드래그하고 터미널 창이 표시 될 때까지 기다렸다가 필요한 항목으로 계속 드래그하십시오.