From aa7ba084cf3444864422d2311b9b8824a2634516 Mon Sep 17 00:00:00 2001 From: Emily Grace Seville Date: Sun, 19 Feb 2023 22:32:05 +1000 Subject: [PATCH] osx/as.md: update placeholders * Make placeholders recognizable by CLIP converter - https://github.com/command-line-interface-pages/prototypes/pull/32 * Update pages/osx/as.md --------- Co-authored-by: K.B.Dharun Krishna --- pages/osx/as.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/osx/as.md b/pages/osx/as.md index 9f94b0af0..904124709 100644 --- a/pages/osx/as.md +++ b/pages/osx/as.md @@ -6,16 +6,16 @@ - Assemble a file, writing the output to `a.out`: -`as {{file.s}}` +`as {{path/to/file.s}}` - Assemble the output to a given file: -`as {{file.s}} -o {{out.o}}` +`as {{path/to/file.s}} -o {{path/to/output_file.o}}` - Generate output faster by skipping whitespace and comment preprocessing. (Should only be used for trusted compilers): -`as -f {{file.s}}` +`as -f {{path/to/file.s}}` - Include a given path to the list of directories to search for files specified in `.include` directives: -`as -I {{path/to/directory}} {{file.s}}` +`as -I {{path/to/directory}} {{path/to/file.s}}`