-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
Description
Description
Expand Storify's command similar to HDFS file viewing commands.
Support Commands
- Grep (
grep): Search for patterns in pathstorify grep -R "pattern" path/
- Find (
find): Find for patterns in pathstorify find path/
- Tree (
tree): View directory structurestorify tree path/
- Diff (
diff): View the differences between the two filesstorify diff file1 file2
- Touch (
touch): Create a new filestorify touch path/newfile
- Truncate (
truncate): Truncate the filestorify truncate path/file
- Append (
append): Append the filestorify append path/file
Implementation Notes
- All operations should work across OSS, S3, MinIO, and filesystem providers
- Maintain existing code structure and error handling patterns
- Support both line-based and byte-based operations
- Add appropriate CLI arguments and help text
- Implement proper error handling for non-existent files and permission issues
QuakeWang