diff --git a/README.md b/README.md
index 6a6cf48c300af7dbeb40cc625d93c4778566ad13..437ae8ae05e19c351a39582ebadb7f1ba75d09e2 100644
--- a/README.md
+++ b/README.md
@@ -22,7 +22,7 @@ pip install -r requirements.txt
 ## Usage
 
 ```bash
-python3 pcap-tweaker.py [-h] [-d] [-r RANDOM_RANGE] pcap [pcap ...]
+python3 pcap-tweaker.py [-h] [-d] [-r RANDOM_RANGE] [-n PACKET_NUMBER] pcap [pcap ...]
 ```
 
 The program produces new PCAP file with the same name as the input files,
@@ -46,6 +46,7 @@ It will be created if it doesn't exist.
 * `-h`, `--help`: show help message and exit
 * `-d`, `--dry-run`: don't write the output PCAP file (but still write the CSV log file)
 * `-r`, `--random-range`: upper bound for the random range, which will select for each packet if it will be edited or not. In practice, each packet will be edited with a probability of `1/(r+1)`. Default: `0` (edit all packets).
+* `-n`, `--packet-number`: index of the packet to edit, starting from 1. Can be specified multiple times. If this is used, only the specified packets will be edited, and no random editing will be performed.
 
 
 ## Supported protocols