diff --git a/pages/linux/mpg123.md b/pages/linux/mpg123.md index 85e13a0dd0..ba255d8814 100644 --- a/pages/linux/mpg123.md +++ b/pages/linux/mpg123.md @@ -9,7 +9,7 @@ - Play the mp3 from `stdin`: -`cat {{file.mp3}} | mpg123 -` +`mpg123 - < {{file.mp3}}` - Jump forward to the next song: diff --git a/pages/linux/speedread.md b/pages/linux/speedread.md index 94bccacf9f..0616d41c6c 100644 --- a/pages/linux/speedread.md +++ b/pages/linux/speedread.md @@ -6,15 +6,15 @@ - Read a text file at a specific speed: -`cat {{path/to/file.txt}} | speedread -wpm {{250}}` +`speedread -wpm {{250}} < {{path/to/file.txt}}` - Resume from a specific line: -`cat {{path/to/file.txt}} | speedread -resume {{5}}` +`speedread -resume {{5}} < {{path/to/file.txt}}` - Show multiple words at a time: -`cat {{path/to/file.txt}} | speedread -multiword` +`speedread -multiword < {{path/to/file.txt}}` - Slow down by 10% during the reading session: diff --git a/pages/linux/xauth.md b/pages/linux/xauth.md index d27edc056f..787c853abe 100644 --- a/pages/linux/xauth.md +++ b/pages/linux/xauth.md @@ -29,7 +29,7 @@ - Merge the authorization entries from a specific file into the authorization database: -`cat {{path/to/file}} | xauth merge -` +`xauth merge - < {{path/to/file}}` - Display help: diff --git a/pages/linux/xsel.md b/pages/linux/xsel.md index a5d86cdcd6..e6027c9aa0 100644 --- a/pages/linux/xsel.md +++ b/pages/linux/xsel.md @@ -9,7 +9,7 @@ - Use the contents of a file as input of the clipboard: -`cat {{path/to/file}} | xsel {{[-ib|--input --clipboard]}}` +`xsel {{[-ib|--input --clipboard]}} < {{path/to/file}}` - Output the clipboard's contents into the terminal (equivalent to ``):