Is there an equivalent of cd - for cp or mv? The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)What is the zsh equivalent of bash's !$ (Bang Dollar)?Is there a Konsole equivalent for gnome?equivalent “echo on” for linux?Is there anything like emacs tramp for shell (bash/zsh)?What is the bash equivalent of zsh vared command?Where should I export an environment variable so that all combinations of bash/dash, interactive/non-interactive, login/non-login, will pick it up?How can I install my script into the user's $HOME/.bin (or $HOME/bin) directory and make sure that is in their PATH?How to use linux to not get crazy with root privilegesHow to synchronize two directories (on external harddrives with Linux), recognizing file movements?Is there an FTP or FTP-like client which allows “delta uploads” - i.e. only uploading the parts of a file which have been changed?

How to test the equality of two Pearson correlation coefficients computed from the same sample?

Does the AirPods case need to be around while listening via an iOS Device?

Windows 10: How to Lock (not sleep) laptop on lid close?

How did the audience guess the pentatonic scale in Bobby McFerrin's presentation?

How does ice melt when immersed in water

How to copy the contents of all files with a certain name into a new file?

Why does the Event Horizon Telescope (EHT) not include telescopes from Africa, Asia or Australia?

Make it rain characters

Match Roman Numerals

Can a novice safely splice in wire to lengthen 5V charging cable?

Simulating Exploding Dice

What was the last x86 CPU that did not have the x87 floating-point unit built in?

Finding the path in a graph from A to B then back to A with a minimum of shared edges

Is it ok to offer lower paid work as a trial period before negotiating for a full-time job?

system() function string length limit

What aspect of planet Earth must be changed to prevent the industrial revolution?

Am I ethically obligated to go into work on an off day if the reason is sudden?

Typeface like Times New Roman but with "tied" percent sign

Why did all the guest students take carriages to the Yule Ball?

Why not take a picture of a closer black hole?

If the empty set is a subset of every set, why write ... ∪ ∅?

Python - Fishing Simulator

Wall plug outlet change

I could not break this equation. Please help me



Is there an equivalent of cd - for cp or mv?



The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)What is the zsh equivalent of bash's !$ (Bang Dollar)?Is there a Konsole equivalent for gnome?equivalent “echo on” for linux?Is there anything like emacs tramp for shell (bash/zsh)?What is the bash equivalent of zsh vared command?Where should I export an environment variable so that all combinations of bash/dash, interactive/non-interactive, login/non-login, will pick it up?How can I install my script into the user's $HOME/.bin (or $HOME/bin) directory and make sure that is in their PATH?How to use linux to not get crazy with root privilegesHow to synchronize two directories (on external harddrives with Linux), recognizing file movements?Is there an FTP or FTP-like client which allows “delta uploads” - i.e. only uploading the parts of a file which have been changed?



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








14















In Bash and similar shells cd - changes the current directory to a previously visited one. It's often very handy. I wonder if there is similar shorthand for copying or moving files, like:



~/project-a/ $ cd ../project-b
~/project-b/ $ cp Makefile LICENSE - # this won't work, hence the question


I'd be also happy with zsh specific answers.










share|improve this question



















  • 5





    With bash: Instead of - press Esc and then . to get from last command its last argument (here: ../project-b).

    – Cyrus
    Mar 31 at 15:06











  • That's true @Cyrus, but in the example the intention is to copy from project-b to project-a.

    – Tad Lispy
    Mar 31 at 15:19












  • @Cyrus, I was always aware that bash has some Emacs-like key bindings and am a heavy Emacs user myself. I was always happily using the general line movement keys of emacs on the shell (C-a etc.). But your comment prompted me to actually look for key bindings in man bash. Holy moly... it really is Emacs-like, complete with the kill ring, the mark semantics (C-space) etc. Thanks for bringing that up.

    – AnoE
    Apr 1 at 11:15


















14















In Bash and similar shells cd - changes the current directory to a previously visited one. It's often very handy. I wonder if there is similar shorthand for copying or moving files, like:



~/project-a/ $ cd ../project-b
~/project-b/ $ cp Makefile LICENSE - # this won't work, hence the question


I'd be also happy with zsh specific answers.










share|improve this question



















  • 5





    With bash: Instead of - press Esc and then . to get from last command its last argument (here: ../project-b).

    – Cyrus
    Mar 31 at 15:06











  • That's true @Cyrus, but in the example the intention is to copy from project-b to project-a.

    – Tad Lispy
    Mar 31 at 15:19












  • @Cyrus, I was always aware that bash has some Emacs-like key bindings and am a heavy Emacs user myself. I was always happily using the general line movement keys of emacs on the shell (C-a etc.). But your comment prompted me to actually look for key bindings in man bash. Holy moly... it really is Emacs-like, complete with the kill ring, the mark semantics (C-space) etc. Thanks for bringing that up.

    – AnoE
    Apr 1 at 11:15














14












14








14


1






In Bash and similar shells cd - changes the current directory to a previously visited one. It's often very handy. I wonder if there is similar shorthand for copying or moving files, like:



~/project-a/ $ cd ../project-b
~/project-b/ $ cp Makefile LICENSE - # this won't work, hence the question


I'd be also happy with zsh specific answers.










share|improve this question
















In Bash and similar shells cd - changes the current directory to a previously visited one. It's often very handy. I wonder if there is similar shorthand for copying or moving files, like:



~/project-a/ $ cd ../project-b
~/project-b/ $ cp Makefile LICENSE - # this won't work, hence the question


I'd be also happy with zsh specific answers.







linux bash file-transfer zsh






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Apr 8 at 6:39







Tad Lispy

















asked Mar 31 at 14:57









Tad LispyTad Lispy

323310




323310







  • 5





    With bash: Instead of - press Esc and then . to get from last command its last argument (here: ../project-b).

    – Cyrus
    Mar 31 at 15:06











  • That's true @Cyrus, but in the example the intention is to copy from project-b to project-a.

    – Tad Lispy
    Mar 31 at 15:19












  • @Cyrus, I was always aware that bash has some Emacs-like key bindings and am a heavy Emacs user myself. I was always happily using the general line movement keys of emacs on the shell (C-a etc.). But your comment prompted me to actually look for key bindings in man bash. Holy moly... it really is Emacs-like, complete with the kill ring, the mark semantics (C-space) etc. Thanks for bringing that up.

    – AnoE
    Apr 1 at 11:15













  • 5





    With bash: Instead of - press Esc and then . to get from last command its last argument (here: ../project-b).

    – Cyrus
    Mar 31 at 15:06











  • That's true @Cyrus, but in the example the intention is to copy from project-b to project-a.

    – Tad Lispy
    Mar 31 at 15:19












  • @Cyrus, I was always aware that bash has some Emacs-like key bindings and am a heavy Emacs user myself. I was always happily using the general line movement keys of emacs on the shell (C-a etc.). But your comment prompted me to actually look for key bindings in man bash. Holy moly... it really is Emacs-like, complete with the kill ring, the mark semantics (C-space) etc. Thanks for bringing that up.

    – AnoE
    Apr 1 at 11:15








5




5





With bash: Instead of - press Esc and then . to get from last command its last argument (here: ../project-b).

– Cyrus
Mar 31 at 15:06





With bash: Instead of - press Esc and then . to get from last command its last argument (here: ../project-b).

– Cyrus
Mar 31 at 15:06













That's true @Cyrus, but in the example the intention is to copy from project-b to project-a.

– Tad Lispy
Mar 31 at 15:19






That's true @Cyrus, but in the example the intention is to copy from project-b to project-a.

– Tad Lispy
Mar 31 at 15:19














@Cyrus, I was always aware that bash has some Emacs-like key bindings and am a heavy Emacs user myself. I was always happily using the general line movement keys of emacs on the shell (C-a etc.). But your comment prompted me to actually look for key bindings in man bash. Holy moly... it really is Emacs-like, complete with the kill ring, the mark semantics (C-space) etc. Thanks for bringing that up.

– AnoE
Apr 1 at 11:15






@Cyrus, I was always aware that bash has some Emacs-like key bindings and am a heavy Emacs user myself. I was always happily using the general line movement keys of emacs on the shell (C-a etc.). But your comment prompted me to actually look for key bindings in man bash. Holy moly... it really is Emacs-like, complete with the kill ring, the mark semantics (C-space) etc. Thanks for bringing that up.

– AnoE
Apr 1 at 11:15











2 Answers
2






active

oldest

votes


















28














If your shell has cd -, then it will likely have either the special variable $OLDPWD and/or the shortcut ~- for the directory you've been in previously.



cp Makefile LICENSE "$OLDPWD/"

cp Makefile LICENSE ~-

cat ~-/Makefile


Indeed the POSIX shell language (upon which ksh/bash/zsh are built) specifies that cd - should be equal to cd "$OLDPWD".






share|improve this answer




















  • 2





    Tilde expansion has a lot more to it even than that. For an additional taste, unix.stackexchange.com/a/286628/135943 and that doesn’t even cover home directories.

    – Wildcard
    Mar 31 at 21:50



















5














You can always use shell backquotes.



They act like a subshell : the command in the backquotes is executed first, and its output is placed as argument of the main command.



~/folderA$ cd ../folderB 
~/folderB$ cp Makefile `cd -`
# gets expended to "cp Makefile ~/folderA"





share|improve this answer


















  • 4





    No, the command cd - outputs nothing, so `cd -` expands to the empty string. Try the command % echo `cd -` to verify. You would need to use something like % echo `cd -; pwd` ...

    – Neal Young
    Apr 1 at 0:21







  • 2





    @NealYoung: It seems that there’s something wrong with your shell. POSIX says “When a <hyphen-minus> is used as the operand [to cd], this shall be equivalent to the command: cd "$OLDPWD" && pwd, which changes to the previous working directory and then writes its name.” … (Cont’d)

    – G-Man
    Apr 1 at 2:36






  • 1





    (Cont’d) …  And bash(1) says “An argument of - is converted to $OLDPWD before the directory change is attempted.  If a non-empty directory name from CDPATH is used, or if - is the first argument, and the directory change is successful, the absolute pathname of the new working directory is written to the standard output.”

    – G-Man
    Apr 1 at 2:36






  • 1





    @Nathanael C.: But please use "$(cd -)".

    – G-Man
    Apr 1 at 2:40












  • There's only "something wrong" if the shell claims POSIX compliance, and I think it's perfectly normal for shells that weren't invoked as /bin/sh and aren't specifically trying to emulate a POSIX shell to implement their language in whatever way they want...

    – grawity
    Apr 1 at 3:55











Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "3"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1419624%2fis-there-an-equivalent-of-cd-for-cp-or-mv%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









28














If your shell has cd -, then it will likely have either the special variable $OLDPWD and/or the shortcut ~- for the directory you've been in previously.



cp Makefile LICENSE "$OLDPWD/"

cp Makefile LICENSE ~-

cat ~-/Makefile


Indeed the POSIX shell language (upon which ksh/bash/zsh are built) specifies that cd - should be equal to cd "$OLDPWD".






share|improve this answer




















  • 2





    Tilde expansion has a lot more to it even than that. For an additional taste, unix.stackexchange.com/a/286628/135943 and that doesn’t even cover home directories.

    – Wildcard
    Mar 31 at 21:50
















28














If your shell has cd -, then it will likely have either the special variable $OLDPWD and/or the shortcut ~- for the directory you've been in previously.



cp Makefile LICENSE "$OLDPWD/"

cp Makefile LICENSE ~-

cat ~-/Makefile


Indeed the POSIX shell language (upon which ksh/bash/zsh are built) specifies that cd - should be equal to cd "$OLDPWD".






share|improve this answer




















  • 2





    Tilde expansion has a lot more to it even than that. For an additional taste, unix.stackexchange.com/a/286628/135943 and that doesn’t even cover home directories.

    – Wildcard
    Mar 31 at 21:50














28












28








28







If your shell has cd -, then it will likely have either the special variable $OLDPWD and/or the shortcut ~- for the directory you've been in previously.



cp Makefile LICENSE "$OLDPWD/"

cp Makefile LICENSE ~-

cat ~-/Makefile


Indeed the POSIX shell language (upon which ksh/bash/zsh are built) specifies that cd - should be equal to cd "$OLDPWD".






share|improve this answer















If your shell has cd -, then it will likely have either the special variable $OLDPWD and/or the shortcut ~- for the directory you've been in previously.



cp Makefile LICENSE "$OLDPWD/"

cp Makefile LICENSE ~-

cat ~-/Makefile


Indeed the POSIX shell language (upon which ksh/bash/zsh are built) specifies that cd - should be equal to cd "$OLDPWD".







share|improve this answer














share|improve this answer



share|improve this answer








edited Mar 31 at 15:28

























answered Mar 31 at 15:20









grawitygrawity

244k37515575




244k37515575







  • 2





    Tilde expansion has a lot more to it even than that. For an additional taste, unix.stackexchange.com/a/286628/135943 and that doesn’t even cover home directories.

    – Wildcard
    Mar 31 at 21:50













  • 2





    Tilde expansion has a lot more to it even than that. For an additional taste, unix.stackexchange.com/a/286628/135943 and that doesn’t even cover home directories.

    – Wildcard
    Mar 31 at 21:50








2




2





Tilde expansion has a lot more to it even than that. For an additional taste, unix.stackexchange.com/a/286628/135943 and that doesn’t even cover home directories.

– Wildcard
Mar 31 at 21:50






Tilde expansion has a lot more to it even than that. For an additional taste, unix.stackexchange.com/a/286628/135943 and that doesn’t even cover home directories.

– Wildcard
Mar 31 at 21:50














5














You can always use shell backquotes.



They act like a subshell : the command in the backquotes is executed first, and its output is placed as argument of the main command.



~/folderA$ cd ../folderB 
~/folderB$ cp Makefile `cd -`
# gets expended to "cp Makefile ~/folderA"





share|improve this answer


















  • 4





    No, the command cd - outputs nothing, so `cd -` expands to the empty string. Try the command % echo `cd -` to verify. You would need to use something like % echo `cd -; pwd` ...

    – Neal Young
    Apr 1 at 0:21







  • 2





    @NealYoung: It seems that there’s something wrong with your shell. POSIX says “When a <hyphen-minus> is used as the operand [to cd], this shall be equivalent to the command: cd "$OLDPWD" && pwd, which changes to the previous working directory and then writes its name.” … (Cont’d)

    – G-Man
    Apr 1 at 2:36






  • 1





    (Cont’d) …  And bash(1) says “An argument of - is converted to $OLDPWD before the directory change is attempted.  If a non-empty directory name from CDPATH is used, or if - is the first argument, and the directory change is successful, the absolute pathname of the new working directory is written to the standard output.”

    – G-Man
    Apr 1 at 2:36






  • 1





    @Nathanael C.: But please use "$(cd -)".

    – G-Man
    Apr 1 at 2:40












  • There's only "something wrong" if the shell claims POSIX compliance, and I think it's perfectly normal for shells that weren't invoked as /bin/sh and aren't specifically trying to emulate a POSIX shell to implement their language in whatever way they want...

    – grawity
    Apr 1 at 3:55















5














You can always use shell backquotes.



They act like a subshell : the command in the backquotes is executed first, and its output is placed as argument of the main command.



~/folderA$ cd ../folderB 
~/folderB$ cp Makefile `cd -`
# gets expended to "cp Makefile ~/folderA"





share|improve this answer


















  • 4





    No, the command cd - outputs nothing, so `cd -` expands to the empty string. Try the command % echo `cd -` to verify. You would need to use something like % echo `cd -; pwd` ...

    – Neal Young
    Apr 1 at 0:21







  • 2





    @NealYoung: It seems that there’s something wrong with your shell. POSIX says “When a <hyphen-minus> is used as the operand [to cd], this shall be equivalent to the command: cd "$OLDPWD" && pwd, which changes to the previous working directory and then writes its name.” … (Cont’d)

    – G-Man
    Apr 1 at 2:36






  • 1





    (Cont’d) …  And bash(1) says “An argument of - is converted to $OLDPWD before the directory change is attempted.  If a non-empty directory name from CDPATH is used, or if - is the first argument, and the directory change is successful, the absolute pathname of the new working directory is written to the standard output.”

    – G-Man
    Apr 1 at 2:36






  • 1





    @Nathanael C.: But please use "$(cd -)".

    – G-Man
    Apr 1 at 2:40












  • There's only "something wrong" if the shell claims POSIX compliance, and I think it's perfectly normal for shells that weren't invoked as /bin/sh and aren't specifically trying to emulate a POSIX shell to implement their language in whatever way they want...

    – grawity
    Apr 1 at 3:55













5












5








5







You can always use shell backquotes.



They act like a subshell : the command in the backquotes is executed first, and its output is placed as argument of the main command.



~/folderA$ cd ../folderB 
~/folderB$ cp Makefile `cd -`
# gets expended to "cp Makefile ~/folderA"





share|improve this answer













You can always use shell backquotes.



They act like a subshell : the command in the backquotes is executed first, and its output is placed as argument of the main command.



~/folderA$ cd ../folderB 
~/folderB$ cp Makefile `cd -`
# gets expended to "cp Makefile ~/folderA"






share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 31 at 21:34









Nathanael C.Nathanael C.

511




511







  • 4





    No, the command cd - outputs nothing, so `cd -` expands to the empty string. Try the command % echo `cd -` to verify. You would need to use something like % echo `cd -; pwd` ...

    – Neal Young
    Apr 1 at 0:21







  • 2





    @NealYoung: It seems that there’s something wrong with your shell. POSIX says “When a <hyphen-minus> is used as the operand [to cd], this shall be equivalent to the command: cd "$OLDPWD" && pwd, which changes to the previous working directory and then writes its name.” … (Cont’d)

    – G-Man
    Apr 1 at 2:36






  • 1





    (Cont’d) …  And bash(1) says “An argument of - is converted to $OLDPWD before the directory change is attempted.  If a non-empty directory name from CDPATH is used, or if - is the first argument, and the directory change is successful, the absolute pathname of the new working directory is written to the standard output.”

    – G-Man
    Apr 1 at 2:36






  • 1





    @Nathanael C.: But please use "$(cd -)".

    – G-Man
    Apr 1 at 2:40












  • There's only "something wrong" if the shell claims POSIX compliance, and I think it's perfectly normal for shells that weren't invoked as /bin/sh and aren't specifically trying to emulate a POSIX shell to implement their language in whatever way they want...

    – grawity
    Apr 1 at 3:55












  • 4





    No, the command cd - outputs nothing, so `cd -` expands to the empty string. Try the command % echo `cd -` to verify. You would need to use something like % echo `cd -; pwd` ...

    – Neal Young
    Apr 1 at 0:21







  • 2





    @NealYoung: It seems that there’s something wrong with your shell. POSIX says “When a <hyphen-minus> is used as the operand [to cd], this shall be equivalent to the command: cd "$OLDPWD" && pwd, which changes to the previous working directory and then writes its name.” … (Cont’d)

    – G-Man
    Apr 1 at 2:36






  • 1





    (Cont’d) …  And bash(1) says “An argument of - is converted to $OLDPWD before the directory change is attempted.  If a non-empty directory name from CDPATH is used, or if - is the first argument, and the directory change is successful, the absolute pathname of the new working directory is written to the standard output.”

    – G-Man
    Apr 1 at 2:36






  • 1





    @Nathanael C.: But please use "$(cd -)".

    – G-Man
    Apr 1 at 2:40












  • There's only "something wrong" if the shell claims POSIX compliance, and I think it's perfectly normal for shells that weren't invoked as /bin/sh and aren't specifically trying to emulate a POSIX shell to implement their language in whatever way they want...

    – grawity
    Apr 1 at 3:55







4




4





No, the command cd - outputs nothing, so `cd -` expands to the empty string. Try the command % echo `cd -` to verify. You would need to use something like % echo `cd -; pwd` ...

– Neal Young
Apr 1 at 0:21






No, the command cd - outputs nothing, so `cd -` expands to the empty string. Try the command % echo `cd -` to verify. You would need to use something like % echo `cd -; pwd` ...

– Neal Young
Apr 1 at 0:21





2




2





@NealYoung: It seems that there’s something wrong with your shell. POSIX says “When a <hyphen-minus> is used as the operand [to cd], this shall be equivalent to the command: cd "$OLDPWD" && pwd, which changes to the previous working directory and then writes its name.” … (Cont’d)

– G-Man
Apr 1 at 2:36





@NealYoung: It seems that there’s something wrong with your shell. POSIX says “When a <hyphen-minus> is used as the operand [to cd], this shall be equivalent to the command: cd "$OLDPWD" && pwd, which changes to the previous working directory and then writes its name.” … (Cont’d)

– G-Man
Apr 1 at 2:36




1




1





(Cont’d) …  And bash(1) says “An argument of - is converted to $OLDPWD before the directory change is attempted.  If a non-empty directory name from CDPATH is used, or if - is the first argument, and the directory change is successful, the absolute pathname of the new working directory is written to the standard output.”

– G-Man
Apr 1 at 2:36





(Cont’d) …  And bash(1) says “An argument of - is converted to $OLDPWD before the directory change is attempted.  If a non-empty directory name from CDPATH is used, or if - is the first argument, and the directory change is successful, the absolute pathname of the new working directory is written to the standard output.”

– G-Man
Apr 1 at 2:36




1




1





@Nathanael C.: But please use "$(cd -)".

– G-Man
Apr 1 at 2:40






@Nathanael C.: But please use "$(cd -)".

– G-Man
Apr 1 at 2:40














There's only "something wrong" if the shell claims POSIX compliance, and I think it's perfectly normal for shells that weren't invoked as /bin/sh and aren't specifically trying to emulate a POSIX shell to implement their language in whatever way they want...

– grawity
Apr 1 at 3:55





There's only "something wrong" if the shell claims POSIX compliance, and I think it's perfectly normal for shells that weren't invoked as /bin/sh and aren't specifically trying to emulate a POSIX shell to implement their language in whatever way they want...

– grawity
Apr 1 at 3:55

















draft saved

draft discarded
















































Thanks for contributing an answer to Super User!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1419624%2fis-there-an-equivalent-of-cd-for-cp-or-mv%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Adding axes to figuresAdding axes labels to LaTeX figuresLaTeX equivalent of ConTeXt buffersRotate a node but not its content: the case of the ellipse decorationHow to define the default vertical distance between nodes?TikZ scaling graphic and adjust node position and keep font sizeNumerical conditional within tikz keys?adding axes to shapesAlign axes across subfiguresAdding figures with a certain orderLine up nested tikz enviroments or how to get rid of themAdding axes labels to LaTeX figures

Luettelo Yhdysvaltain laivaston lentotukialuksista Lähteet | Navigointivalikko

Gary (muusikko) Sisällysluettelo Historia | Rockin' High | Lähteet | Aiheesta muualla | NavigointivalikkoInfobox OKTuomas "Gary" Keskinen Ancaran kitaristiksiProjekti Rockin' High