Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/273do/delete-specific-string-in-directory
指定したディレクトリ内の全てのディレクトリ名から,特定の文字列を一括で削除します.
https://github.com/273do/delete-specific-string-in-directory
shellscript
Last synced: about 1 month ago
JSON representation
指定したディレクトリ内の全てのディレクトリ名から,特定の文字列を一括で削除します.
- Host: GitHub
- URL: https://github.com/273do/delete-specific-string-in-directory
- Owner: 273Do
- Created: 2024-09-08T05:32:30.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-08T06:44:57.000Z (4 months ago)
- Last Synced: 2024-12-01T06:49:02.622Z (about 1 month ago)
- Topics: shellscript
- Language: Shell
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### 📟 指定したディレクトリ内の全てのディレクトリ名から,特定の文字列を一括で削除します.
1. 実行権限を付与(Grant execution permission)
`chmod +x script.sh`
2. 引数を設定して実行(Set arguments and execute)
`./script.sh 対象ディレクトリのパス 削除したい文字列`---
例:Dev ディレクトリ(../../../Dev)内の全てのファイルから Project を削除したい
Example: I want to delete Project from all files in the Dev directory (../../../Dev)Dev
∟ JavaProject
∟ ShellProject
∟ PHPProject
`./script.sh ../../../Dev Project`を実行(execution)
Dev
∟ Java
∟ Shell
∟ PHP