Skip to content

Commit

Permalink
Update bash.md (split and merge files)
Browse files Browse the repository at this point in the history
  • Loading branch information
laspavel committed Jan 6, 2024
1 parent 7f75fb6 commit b2f0d4e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions 03.linux/10070.bash.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ echo $GREEN"GOOD!!! "$NORMAL
echo $DGREY"INFO!!! "$NORMAL
```
## Разбивка файла на части (По 30Мб) и соединение
```
split -b 30m bigfile.zip bigfile.zip.part_
cat bigfile.zip.part_* > bigfile.zip
```

## Подсчет количества определенны символов в файле

```
Expand Down

0 comments on commit b2f0d4e

Please sign in to comment.